Qt: Minor Visual Fixes (#5899)

* Increase minimum size of User Manager window so QPushButtons aren't squeezed together
* Add spacing to the links in the About dialog to match all other buttons in the GUI
* Make the links in the About dialog work on Linux
* Turn the tooltip on "Config" in toolbar into an imperative like the rest of them
This commit is contained in:
drysalter 2019-05-04 23:56:55 +03:00 committed by Megamouse
parent a703460fc6
commit f246a8666a
4 changed files with 8 additions and 8 deletions

View file

@ -48,7 +48,7 @@ user_manager_dialog::user_manager_dialog(std::shared_ptr<gui_settings> gui_setti
: QDialog(parent), m_user_list(), m_sort_column(1), m_sort_ascending(true), m_gui_settings(gui_settings)
{
setWindowTitle(tr("User Manager"));
setMinimumSize(QSize(400, 400));
setMinimumSize(QSize(500, 400));
setModal(true);
Init();