diff options
| author | 2016-06-30 18:12:37 +0100 | |
|---|---|---|
| committer | 2016-06-30 18:12:37 +0100 | |
| commit | b0b74402adf8f6c0871b8d07462b7f569ae9ce9a (patch) | |
| tree | 7611a61426c11eeef3f5f116f5a1da9bf3949bb1 /src/modules/options/OptionsWidget_servers.cpp | |
| parent | popups: add znc channel to defaults (diff) | |
| download | KVIrc-b0b74402adf8f6c0871b8d07462b7f569ae9ce9a.tar.gz KVIrc-b0b74402adf8f6c0871b8d07462b7f569ae9ce9a.tar.bz2 KVIrc-b0b74402adf8f6c0871b8d07462b7f569ae9ce9a.zip | |
OptionsWidget_servers: revert minimum width to 600 after e2f8e3d
Cant make this dialog any wider without making the general preferences
dialog also wider, and this looks not so nice either.
So we ignore part of https://github.com/kvirc/KVIrc/issues/1355 because
thers nothing else to do but compromise, user can enjoy the slightly
taller dialog standalone which is better than nothing
Diffstat (limited to 'src/modules/options/OptionsWidget_servers.cpp')
| -rw-r--r-- | src/modules/options/OptionsWidget_servers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/options/OptionsWidget_servers.cpp b/src/modules/options/OptionsWidget_servers.cpp index 23360585e..a00724c98 100644 --- a/src/modules/options/OptionsWidget_servers.cpp +++ b/src/modules/options/OptionsWidget_servers.cpp @@ -1486,8 +1486,8 @@ OptionsWidget_servers::OptionsWidget_servers(QWidget * parent) layout()->setRowStretch(1, 1); layout()->setColumnStretch(1, 1); - setMinimumWidth(800); - setMinimumHeight(440); + setMinimumWidth(600); // made this dialog taller but cant make it wider https://github.com/kvirc/KVIrc/issues/1355 + setMinimumHeight(440); // The server dilaog opens inside general prefs as well and wider makes the parent window way too large } OptionsWidget_servers::~OptionsWidget_servers() |
