mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-21 12:54:42 +02:00
When hiding tab bar via command-line parameter, don't affect settings.
This commit is contained in:
parent
ac61c43d15
commit
31f6bf8398
@ -124,7 +124,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…
x
Reference in New Issue
Block a user