mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 05:14:45 +00:00
Add "selected_text" color to theme.xml for selected text on entry fields
Requested here: https://twitter.com/antonkudin/status/957004393144094720
This commit is contained in:
parent
c1342a7029
commit
0eef231ff7
@ -31,6 +31,7 @@
|
||||
<color id="face" value="#d3cbbe" />
|
||||
<color id="hot_face" value="#faf0e6" />
|
||||
<color id="selected" value="#ff5555" />
|
||||
<color id="selected_text" value="#ffffff" />
|
||||
<color id="separator_label" value="#2c4c91" />
|
||||
<color id="background" value="#ffffff" />
|
||||
<color id="textbox_text" value="#000000" />
|
||||
|
@ -1,5 +1,5 @@
|
||||
// Aseprite
|
||||
// Copyright (C) 2001-2017 David Capello
|
||||
// Copyright (C) 2001-2018 David Capello
|
||||
//
|
||||
// This program is distributed under the terms of
|
||||
// the End-User License Agreement for Aseprite.
|
||||
@ -996,7 +996,7 @@ public:
|
||||
bg = colors.selected();
|
||||
else
|
||||
bg = colors.disabled();
|
||||
fg = colors.background();
|
||||
fg = colors.selectedText();
|
||||
}
|
||||
|
||||
// Disabled
|
||||
|
Loading…
Reference in New Issue
Block a user