diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-31 01:49:07 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-31 01:49:07 +0100 |
commit | ad7711b87cbbf96ebfd23b7fb7f6c2c1c319905d (patch) | |
tree | 6f80613ce08a2eab7a4ca91f230c1fa3efc4cf5e /gui | |
parent | 952b63f68de93e8acf7aab81373661dae8d5098b (diff) | |
download | MultiMC-ad7711b87cbbf96ebfd23b7fb7f6c2c1c319905d.tar MultiMC-ad7711b87cbbf96ebfd23b7fb7f6c2c1c319905d.tar.gz MultiMC-ad7711b87cbbf96ebfd23b7fb7f6c2c1c319905d.tar.lz MultiMC-ad7711b87cbbf96ebfd23b7fb7f6c2c1c319905d.tar.xz MultiMC-ad7711b87cbbf96ebfd23b7fb7f6c2c1c319905d.zip |
Fix silly bug with icon not changing on the toolbar when the icon key changes.
Diffstat (limited to 'gui')
-rw-r--r-- | gui/MainWindow.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index 2ba0d509..9cb79ea3 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -639,10 +639,8 @@ void MainWindow::on_actionChangeInstIcon_triggered() if (dlg.result() == QDialog::Accepted) { m_selectedInstance->setIconKey(dlg.selectedIconKey); - /* auto ico = MMC->icons()->getIcon(dlg.selectedIconKey); ui->actionChangeInstIcon->setIcon(ico); - */ } } |