mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-16 16:47:24 +00:00
parent
b1fbad91fe
commit
a9cae5b96e
@ -241,7 +241,7 @@ Item {
|
||||
}
|
||||
|
||||
HoverHandler {
|
||||
enabled: !messageContextMenu.opened && !profilePopupOpened
|
||||
enabled: !messageContextMenu.opened && !profilePopupOpened && !popupOpened
|
||||
onHoveredChanged: {
|
||||
root.isHovered = hovered;
|
||||
}
|
||||
|
@ -16,6 +16,7 @@ import Qt.labs.settings 1.0
|
||||
RowLayout {
|
||||
id: appMain
|
||||
property int currentView: sLayout.currentIndex
|
||||
property bool popupOpened: false
|
||||
spacing: 0
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
|
@ -19,6 +19,7 @@ ApplicationWindow {
|
||||
property bool hasAccounts: !!loginModel.rowCount()
|
||||
property bool removeMnemonicAfterLogin: false
|
||||
property alias dragAndDrop: dragTarget
|
||||
property bool popupOpened: false
|
||||
|
||||
Universal.theme: Universal.System
|
||||
|
||||
|
@ -28,6 +28,12 @@ Popup {
|
||||
color: Style.current.background
|
||||
radius: 8
|
||||
}
|
||||
onOpened: {
|
||||
popupOpened = true
|
||||
}
|
||||
onClosed: {
|
||||
popupOpened = false
|
||||
}
|
||||
padding: 0
|
||||
contentItem: Item {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user