You've already forked AstralRinth
forked from didirus/AstralRinth
Performance (#89)
* jre async * mac support * fixed some settings not being saved to file * fixed older version of mac random crashing bug * added specific mac version detection * linux support for jre changes * added app storage options * tauri features change * dependency fix * removed debug statement * restructured to not pass css through rust * changed to os_info * rerun cicd
This commit is contained in:
3
theseus_gui/src/assets/stylesheets/macFix.css
Normal file
3
theseus_gui/src/assets/stylesheets/macFix.css
Normal file
@@ -0,0 +1,3 @@
|
||||
img {
|
||||
pointer-events: none !important;
|
||||
}
|
||||
@@ -6,11 +6,12 @@ import '../node_modules/omorphia/dist/style.css'
|
||||
import '@/assets/stylesheets/global.scss'
|
||||
import FloatingVue from 'floating-vue'
|
||||
import { initialize_state } from '@/helpers/state'
|
||||
import loadCssMixin from './mixins/macCssFix.js'
|
||||
|
||||
const pinia = createPinia()
|
||||
|
||||
initialize_state()
|
||||
.then(() => {
|
||||
createApp(App).use(router).use(pinia).use(FloatingVue).mount('#app')
|
||||
createApp(App).use(router).use(pinia).use(FloatingVue).mixin(loadCssMixin).mount('#app')
|
||||
})
|
||||
.catch((err) => console.error(err))
|
||||
|
||||
27
theseus_gui/src/mixins/macCssFix.js
Normal file
27
theseus_gui/src/mixins/macCssFix.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import { invoke } from '@tauri-apps/api/tauri'
|
||||
import cssContent from '@/assets/stylesheets/macFix.css?inline'
|
||||
|
||||
export default {
|
||||
async mounted() {
|
||||
await this.checkDisableMouseover()
|
||||
},
|
||||
methods: {
|
||||
async checkDisableMouseover() {
|
||||
try {
|
||||
// Fetch the CSS content from the Rust backend
|
||||
const should_disable_mouseover = await invoke('should_disable_mouseover')
|
||||
|
||||
if (should_disable_mouseover) {
|
||||
// Create a style element and set its content
|
||||
const styleElement = document.createElement('style')
|
||||
styleElement.innerHTML = cssContent
|
||||
|
||||
// Append the style element to the document's head
|
||||
document.head.appendChild(styleElement)
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error checking OS version from Rust backend', error)
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user