NOISSUE add flat icon theme by Michael

It's the google icon font, all scalable and grey.
This commit is contained in:
Petr Mrázek
2017-12-03 21:52:40 +01:00
parent d6fc37e486
commit 90a3997d2c
44 changed files with 199 additions and 1 deletions

View File

@ -270,6 +270,9 @@ void MultiMCPage::applySettings()
s->set("IconTheme", "iOS");
break;
case 7:
s->set("IconTheme", "flat");
break;
case 8:
s->set("IconTheme", "custom");
break;
case 0:
@ -363,10 +366,14 @@ void MultiMCPage::loadSettings()
{
ui->themeComboBox->setCurrentIndex(6);
}
else if (theme == "custom")
else if (theme == "flat")
{
ui->themeComboBox->setCurrentIndex(7);
}
else if (theme == "custom")
{
ui->themeComboBox->setCurrentIndex(8);
}
else
{
ui->themeComboBox->setCurrentIndex(0);

View File

@ -302,6 +302,11 @@
<string notr="true">iOS</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">Flat</string>
</property>
</item>
<item>
<property name="text">
<string>Custom</string>