diff options
Diffstat (limited to 'src/theme.c')
-rw-r--r-- | src/theme.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/theme.c b/src/theme.c index b07d7cdd..f1b6f41a 100644 --- a/src/theme.c +++ b/src/theme.c @@ -4760,10 +4760,8 @@ theme_get_style (MetaTheme *theme, resize = META_FRAME_RESIZE_LAST; /* compiler */ break; } - - /* re invert the styles used for focus/unfocussed while flashing a frame */ - if (((flags & META_FRAME_HAS_FOCUS) && !(flags & META_FRAME_IS_FLASHING)) - || (!(flags & META_FRAME_HAS_FOCUS) && (flags & META_FRAME_IS_FLASHING))) + + if (flags & META_FRAME_HAS_FOCUS) focus = META_FRAME_FOCUS_YES; else focus = META_FRAME_FOCUS_NO; |