Implemented a screen displaying the history of operations with the board. Added dialogs for displaying messages and statuses
This commit is contained in:
@@ -46,7 +46,8 @@ ComboBox {
|
||||
}
|
||||
|
||||
onPaint: {
|
||||
context.reset();
|
||||
var context = getContext("2d")
|
||||
context.reset()
|
||||
|
||||
if (control.down) {
|
||||
context.moveTo(0, height);
|
||||
@@ -77,7 +78,10 @@ ComboBox {
|
||||
background: Rectangle {
|
||||
implicitWidth: 120
|
||||
implicitHeight: 46
|
||||
color: control.down ? Palette.selectedBackgroundColor : Palette.backgroundColor
|
||||
color: control.enabled
|
||||
? (control.down ? Palette.selectedBackgroundColor : Palette.backgroundColor)
|
||||
: Palette.hoveredBackgroundColor
|
||||
|
||||
border.color: Palette.borderColor
|
||||
border.width: 1
|
||||
radius: 5
|
||||
|
||||
Reference in New Issue
Block a user