diff options
Diffstat (limited to 'Userland/Libraries/LibGfx')
-rw-r--r-- | Userland/Libraries/LibGfx/ClassicWindowTheme.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/ClassicWindowTheme.h b/Userland/Libraries/LibGfx/ClassicWindowTheme.h index 0a07e63f1b..e72e9b90f1 100644 --- a/Userland/Libraries/LibGfx/ClassicWindowTheme.h +++ b/Userland/Libraries/LibGfx/ClassicWindowTheme.h @@ -48,7 +48,7 @@ private: bool uses_alpha() const { // We don't care about the title_stripes_color or title_shadow_color alpha channels because they are - // effectively rendered on top of the borders and don't mean whether the frame itself atually has + // effectively rendered on top of the borders and don't mean whether the frame itself actually has // any alpha channels that would require the entire frame to be rendered as transparency. return title_color.alpha() != 0xff || border_color.alpha() != 0xff || border_color2.alpha() != 0xff; } |