diff options
| author | 2012-01-11 21:47:11 +0000 | |
|---|---|---|
| committer | 2012-01-11 21:47:11 +0000 | |
| commit | 3071a62d8b9c15085f56c92d50869afdd7af2f63 (patch) | |
| tree | 2f90d6afe831076e4a76b13a7330fb3d5a30130c /src/modules/filetransferwindow | |
| parent | quick fix (diff) | |
| download | KVIrc-3071a62d8b9c15085f56c92d50869afdd7af2f63.tar.gz KVIrc-3071a62d8b9c15085f56c92d50869afdd7af2f63.tar.bz2 KVIrc-3071a62d8b9c15085f56c92d50869afdd7af2f63.zip | |
moar window management fixes:
- cache userlist/notifylist splitter size when it's hidden to avoid dummy values
- cache window geometry when minimized/maximized to avoid qt reporting dummy geometry
- avoid raising the filetransferwindow when kvirc is not the active window
- per-window TextEncoding option is already saved in a section, no need to append channel name to it
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6047 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/filetransferwindow')
| -rw-r--r-- | src/modules/filetransferwindow/libkvifiletransferwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/filetransferwindow/libkvifiletransferwindow.cpp b/src/modules/filetransferwindow/libkvifiletransferwindow.cpp index 110760555..3de366985 100644 --- a/src/modules/filetransferwindow/libkvifiletransferwindow.cpp +++ b/src/modules/filetransferwindow/libkvifiletransferwindow.cpp @@ -57,7 +57,6 @@ static KviModuleExtension * filetransferwindow_extension_alloc(KviModuleExtensio g_pFileTransferWindow = new FileTransferWindow(s->pDescriptor); g_pMainWindow->addWindow(g_pFileTransferWindow,!bCreateMinimized); - if(bCreateMinimized)g_pFileTransferWindow->minimize(); return g_pFileTransferWindow; } @@ -73,7 +72,8 @@ static KviModuleExtension * filetransferwindow_extension_alloc(KviModuleExtensio } } - if(!bNoRaise)g_pFileTransferWindow->delayedAutoRaise(); + if(!bNoRaise) + g_pFileTransferWindow->delayedAutoRaise(); return g_pFileTransferWindow; } |
