aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/stores/GlobalSettings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/stores/GlobalSettings.ts')
-rw-r--r--packages/main/src/stores/GlobalSettings.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/main/src/stores/GlobalSettings.ts b/packages/main/src/stores/GlobalSettings.ts
index 7bbc089..2af9da2 100644
--- a/packages/main/src/stores/GlobalSettings.ts
+++ b/packages/main/src/stores/GlobalSettings.ts
@@ -37,6 +37,9 @@ const GlobalSettings = overrideProps(GlobalSettingsBase, {
37 setThemeSource(mode: ThemeSource): void { 37 setThemeSource(mode: ThemeSource): void {
38 self.themeSource = mode; 38 self.themeSource = mode;
39 }, 39 },
40 setShowLocationBar(showLocationBar: boolean): void {
41 self.showLocationBar = showLocationBar;
42 },
40 setSelectedServiceId(serviceId: string): void { 43 setSelectedServiceId(serviceId: string): void {
41 const serviceInstance = resolveIdentifier(Service, self, serviceId); 44 const serviceInstance = resolveIdentifier(Service, self, serviceId);
42 if (serviceInstance === undefined) { 45 if (serviceInstance === undefined) {