forked from qt-creator/qt-creator
Core: New and themable locked/unlocked icon
This change replaces the existing locked/unlocked icons with Diana's icons and makes them themable. Now, they fit much better into the UI. Especially in the dark theme. Change-Id: I51beb3be202af8f2f467e81701cd5f27a6837d1c Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
This commit is contained in:
@@ -52,10 +52,11 @@ const Icon RESET(
|
||||
QLatin1String(":/core/images/reset.png"));
|
||||
const Icon DARK_CLOSE(
|
||||
QLatin1String(":/core/images/darkclose.png"));
|
||||
const Icon LOCKED(
|
||||
QLatin1String(":/core/images/locked.png"));
|
||||
const Icon UNLOCKED(
|
||||
QLatin1String(":/core/images/unlocked.png"));
|
||||
const Icon LOCKED({
|
||||
{QLatin1String(":/core/images/lockedbackground.png"), Theme::PanelStatusBarBackgroundColor},
|
||||
{QLatin1String(":/core/images/locked.png"), Theme::IconsBaseColor}}, Icon::Tint);
|
||||
const Icon UNLOCKED({
|
||||
{QLatin1String(":/core/images/unlocked.png"), Theme::IconsDisabledColor}}, Icon::Tint);
|
||||
const Icon FIND_CASE_INSENSITIVELY(
|
||||
QLatin1String(":/find/images/casesensitively.png"));
|
||||
const Icon FIND_WHOLE_WORD(
|
||||
|
||||
Reference in New Issue
Block a user