X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingsdlg.cpp;h=743335714340e887a70d4c57c023a0645bac2696;hp=39076947f5d73dbe5f5d174f91b56b44e7ea4657;hb=35ca85f1c4371ee28d00d5ff0195a5b44aadb299;hpb=7de4debb5a6744d9f67cb09c5fc0aa136f05be96 diff --git a/src/qtui/settingsdlg.cpp b/src/qtui/settingsdlg.cpp index 39076947..74333571 100644 --- a/src/qtui/settingsdlg.cpp +++ b/src/qtui/settingsdlg.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,13 +18,13 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include #include #include #include "settingsdlg.h" #include "client.h" -#include "iconloader.h" SettingsDlg::SettingsDlg(QWidget *parent) : QDialog(parent), @@ -45,6 +45,22 @@ SettingsDlg::SettingsDlg(QWidget *parent) connect(Client::instance(), SIGNAL(coreConnectionStateChanged(bool)), SLOT(coreConnectionStateChanged())); setButtonStates(); + + // Some settings panes can take a good bit of space. To avoid squashing the settings tree, try + // to resize the dialog. If needed, it can always be resized by the user to take less space. + // + // Only try to resize if the sizes are valid. This shouldn't happen.. but better to be safe. + // See http://www.qtcentre.org/threads/3427-invalid-sizeHint() + if (ui.settingsTree->sizeHint().isValid() && ui.settingsTree->size().isValid()) { + // Find out how much width would make the settings tree happy + int wantedExtraWidth = ui.settingsTree->sizeHint().width() + - ui.settingsTree->size().width(); + // If more space is needed, try to resize to allow for it. Qt should keep the dialog within + // the bounds of the screen. + if (wantedExtraWidth > 0) { + this->resize(this->width() + wantedExtraWidth, this->height()); + } + } }