Skip to content

Commit

Permalink
Change color (same of QComboBox item selected) of items selected in L…
Browse files Browse the repository at this point in the history
…ocator.qml and FileHandler.qml
  • Loading branch information
centaurialpha committed Oct 2, 2016
1 parent f1b6988 commit 68f2659
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ninja_ide/gui/qml/FilesHandler.qml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Rectangle {
property int defaultValues: checkers ? 70 : 60
height: itemVisible ? defaultValues : 0
property bool current: ListView.isCurrentItem
color: item.current ? "#4182c4" : "#27292b"
color: item.current ? "#6a6ea9" : "#27292b"

property string mainTextColor: item.current ? "white" : "#aaaaaa"
property string mainTextModifiedColor: item.current ? "lightgreen" : "green"
Expand Down
2 changes: 1 addition & 1 deletion ninja_ide/gui/qml/Locator.qml
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ Rectangle {
}
height: 70
property bool current: ListView.isCurrentItem
color: listItem.current ? "#4182c4" : "#27292b"
color: listItem.current ? "#6a6ea9" : "#27292b"

MouseArea {
anchors.fill: parent
Expand Down

0 comments on commit 68f2659

Please sign in to comment.