Semi-transparent floor, fix appname override

Small tweaks:
- Made floor semi-transparent (this was lost somehow)
- Fixed appnames override to not set name to empty string if only category is over-ridden.
This commit is contained in:
tverona1
2020-05-04 17:03:01 -07:00
parent caee2a827d
commit 17501f5d75
2 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -280,7 +280,7 @@ namespace QuestAppLauncher
{
PackageName = apps[entry.Key].PackageName,
Index = apps[entry.Key].Index,
AppName = appName,
AppName = !String.IsNullOrWhiteSpace(appName) ? appName : apps[entry.Key].AppName,
AutoTabName = autoTabName ?? apps[entry.Key].AutoTabName,
Tab1Name = tab1 ?? apps[entry.Key].Tab1Name,
Tab2Name = tab2 ?? apps[entry.Key].Tab2Name,