diff options
author | Andrew <forkk@forkk.net> | 2013-11-27 16:14:18 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-11-27 16:14:18 -0600 |
commit | a4c5f0135ef8e3671f54cf56b1aa8766ee4b4a20 (patch) | |
tree | e6b379e6a49e4dabb48ed216f0468a8daa276dac /gui/dialogs/AccountListDialog.h | |
parent | d794a4d0bfac0341c15bd5273e8dc81fe82531ef (diff) | |
download | MultiMC-a4c5f0135ef8e3671f54cf56b1aa8766ee4b4a20.tar MultiMC-a4c5f0135ef8e3671f54cf56b1aa8766ee4b4a20.tar.gz MultiMC-a4c5f0135ef8e3671f54cf56b1aa8766ee4b4a20.tar.lz MultiMC-a4c5f0135ef8e3671f54cf56b1aa8766ee4b4a20.tar.xz MultiMC-a4c5f0135ef8e3671f54cf56b1aa8766ee4b4a20.zip |
Allow setting no default account
This allows the user to select an account to use every time they launch
an instance.
Diffstat (limited to 'gui/dialogs/AccountListDialog.h')
-rw-r--r-- | gui/dialogs/AccountListDialog.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gui/dialogs/AccountListDialog.h b/gui/dialogs/AccountListDialog.h index 52666e3b..63720f58 100644 --- a/gui/dialogs/AccountListDialog.h +++ b/gui/dialogs/AccountListDialog.h @@ -42,11 +42,16 @@ slots: void on_editAccountBtn_clicked(); - void on_setActiveBtn_clicked(); + void on_setDefaultBtn_clicked(); + + void on_noDefaultBtn_clicked(); // This will be sent when the "close" button is clicked. void on_closeBtnBox_rejected(); + //! Updates the states of the dialog's buttons. + void updateButtonStates(); + signals: void activeAccountChanged(); |