Compare commits

..

No commits in common. "2f575bc54182aa4b87def6149c49d0f39a1fda69" and "ac242797999b70c2f199453f58a797abd292ddfc" have entirely different histories.

3 changed files with 3 additions and 26 deletions

View file

@ -8,21 +8,5 @@ Menu {
palette.window: Theme.palette.base100 palette.window: Theme.palette.base100
palette.base: Theme.palette.base100 palette.base: Theme.palette.base100
focus: true
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
enter: Transition {
NumberAnimation {
property: "opacity"
from: 0.0
to: 1.0
}
}
exit: Transition {
NumberAnimation {
property: "opacity"
from: 1.0
to: 0.0
}
}
} }

View file

@ -1,9 +0,0 @@
import qs.config
import QtQuick
import QtQuick.Controls
MenuSeparator {
palette.text: Theme.palette.basecontent
palette.highlight: Theme.palette.primary
palette.highlightedText: Theme.palette.primarycontent
}

View file

@ -134,7 +134,9 @@ StyledWindow {
StyledMenuItem { StyledMenuItem {
text: "Open..." text: "Open..."
} }
StyledMenuSeparator {} StyledMenuItem {
text: "Save"
}
StyledMenuItem { StyledMenuItem {
text: "Close" text: "Close"
} }