commit 2a434113a73e72cda697ae75b15d7f002dd94848
parent 4d5d9b3a50fc8eb85d97c2cd1a7f17d5587bca31
Author: cfillion <cfillion@users.noreply.github.com>
Date: Mon, 11 Jul 2016 21:39:02 -0400
browser: add visiblity toggle for theme packages
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/browser.cpp b/src/browser.cpp
@@ -390,6 +390,7 @@ void Browser::displayButton()
{AUTO_STR("&Scripts"), Package::ScriptType},
{AUTO_STR("&Effects"), Package::EffectType},
{AUTO_STR("E&xtensions"), Package::ExtensionType},
+ {AUTO_STR("&Themes"), Package::ThemeType},
{AUTO_STR("&Other packages"), Package::UnknownType},
};
@@ -433,6 +434,7 @@ bool Browser::isFiltered(Package::Type type) const
case Package::ScriptType:
case Package::EffectType:
case Package::ExtensionType:
+ case Package::ThemeType:
break;
default:
type = Package::UnknownType;