Merge pull request #9 from andreas-jonsson/tabbar
[CHANGE_BEHAVIOUR] When hiding tab bar via command-line parameter, don't affect settings.pull/13/head^2
commit
572f67f511
|
@ -121,7 +121,13 @@ void Notepad_plus_Window::init(HINSTANCE hInst, HWND parent, const TCHAR *cmdLin
|
|||
|
||||
if (cmdLineParams->_isNoTab || (nppGUI._tabStatus & TAB_HIDE))
|
||||
{
|
||||
const int tabStatusOld = nppGUI._tabStatus;
|
||||
::SendMessage(_hSelf, NPPM_HIDETABBAR, 0, TRUE);
|
||||
if (cmdLineParams->_isNoTab)
|
||||
{
|
||||
// Restore old settings when tab bar has been hidden from tab bar.
|
||||
nppGUI._tabStatus = tabStatusOld;
|
||||
}
|
||||
}
|
||||
|
||||
if (cmdLineParams->_alwaysOnTop)
|
||||
|
|
Loading…
Reference in New Issue