mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
fix unresolved import and unsafe undefined access
This commit is contained in:
parent
d05c451294
commit
ce114b33ff
3 changed files with 2 additions and 4 deletions
|
|
@ -34,8 +34,8 @@ MouseArea {
|
|||
|
||||
menu: root.item.menu
|
||||
anchor.window: bar
|
||||
anchor.rect.x: root.x + (Config.options.bar.vertical ? 0 : bar.width)
|
||||
anchor.rect.y: root.y + (Config.options.bar.vertical ? bar.height : 0)
|
||||
anchor.rect.x: root.x + (Config.options.bar.vertical ? 0 : bar?.width)
|
||||
anchor.rect.y: root.y + (Config.options.bar.vertical ? bar?.height : 0)
|
||||
anchor.rect.height: root.height
|
||||
anchor.rect.width: root.width
|
||||
anchor.edges: Config.options.bar.bottom ? (Edges.Top | Edges.Left) : (Edges.Bottom | Edges.Right)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
import "./weather"
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import Quickshell
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
import "./weather"
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import Quickshell
|
||||
|
|
|
|||
Loading…
Reference in a new issue