Browse Source

LibGUI+WindowServer: Improve checkmark appearance.

Andreas Kling 6 years ago
parent
commit
d8ae6c31ce
2 changed files with 12 additions and 12 deletions
  1. 6 6
      LibGUI/GCheckBox.cpp
  2. 6 6
      Servers/WindowServer/WSMenu.cpp

+ 6 - 6
LibGUI/GCheckBox.cpp

@@ -8,13 +8,13 @@
 
 
 static const char* s_checked_bitmap_data = {
 static const char* s_checked_bitmap_data = {
     "         "
     "         "
+    "       # "
     "      ## "
     "      ## "
-    "     ##  "
-    "     ##  "
-    "    ##   "
-    " ## ##   "
-    "  ####   "
-    "   ##    "
+    "     ### "
+    " ## ###  "
+    " #####   "
+    "  ###    "
+    "   #     "
     "         "
     "         "
 };
 };
 
 

+ 6 - 6
Servers/WindowServer/WSMenu.cpp

@@ -29,13 +29,13 @@ const Font& WSMenu::font() const
 
 
 static const char* s_checked_bitmap_data = {
 static const char* s_checked_bitmap_data = {
     "         "
     "         "
+    "       # "
     "      ## "
     "      ## "
-    "     ##  "
-    "     ##  "
-    "    ##   "
-    " ## ##   "
-    "  ####   "
-    "   ##    "
+    "     ### "
+    " ## ###  "
+    " #####   "
+    "  ###    "
+    "   #     "
     "         "
     "         "
 };
 };