Added fancy mouseover effect to field borders.

This might be slow, if this becomes a problem I could add a setting to disable it.
This commit is contained in:
Twan van Laarhoven
2020-04-25 23:59:56 +02:00
parent 7d06e903a4
commit 5d4c3402df
3 changed files with 15 additions and 7 deletions
+2 -1
View File
@@ -22,7 +22,8 @@ enum DrawWhat
, DRAW_EDITING = 0x40 // draw other editor stuff, can be disabled.
, DRAW_ERRORS = 0x80 // draw error indicators, can't be disabled
, DRAW_ACTIVE = 0x100 // draw active editor stuff, such as hidden separators and atom highlights
, DRAW_NATIVELOOK = 0x200 // use a native look
, DRAW_HOVER = 0x200 // draw mouse over stuff, such as a highlighted border
, DRAW_NATIVELOOK = 0x400 // use a native look
};
// ----------------------------------------------------------------------------- : EOF