diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-13 18:48:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 18:48:59 +0100 |
commit | 5a561f67b349d8216f5c1ea03221b8302b3902ae (patch) | |
tree | 129630dc10299d123da4b54b00131b4e201d0b0f /src-vue/src/plugins | |
parent | efd4afaaa68fc9168b71cb0a8049ca38a8ed8d79 (diff) | |
download | FlightCore-5a561f67b349d8216f5c1ea03221b8302b3902ae.tar.gz FlightCore-5a561f67b349d8216f5c1ea03221b8302b3902ae.zip |
feat: Show stripped title bar on debug build (#48)
* feat: Show stripped title bar on debug build
Helps with differentiating which window is which when both developing
FlightCore and is using release version at the same time.
* fix: Only show striped menubar for debug builds
Diffstat (limited to 'src-vue/src/plugins')
-rw-r--r-- | src-vue/src/plugins/store.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index 8f1f9fe5..b97af2a7 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -200,6 +200,12 @@ async function _initializeApp(state: any) { // Enable dev mode directly if application is in debug mode if (await invoke("is_debug_mode")) { state.developer_mode = true; + + // Make menubar striped if debug build + let menu_bar_handle = document.querySelector('#fc__menu_bar'); + if (menu_bar_handle !== null) { + menu_bar_handle.classList.toggle('developer_build'); + } } // Grab Northstar release canal value from store if exists |