chiark / gitweb /
remove redundant color
authorRichard Kettlewell <rjk@greenend.org.uk>
Sun, 28 Oct 2007 18:03:10 +0000 (18:03 +0000)
committerRichard Kettlewell <rjk@greenend.org.uk>
Sun, 28 Oct 2007 18:03:10 +0000 (18:03 +0000)
disobedience/appearance.c
disobedience/disobedience.h

index 07f39ae324bcd15ef47d7c860df376b43db72de0..97892beb72dc3108c7492972e1cb5915411e9e0e 100644 (file)
@@ -46,9 +46,6 @@ GdkColor tool_fg = { 0, 0x0000, 0x0000, 0x0000 };
 /** @brief Foreground colors for inactive tools */
 GdkColor inactive_tool_fg = { 0, 0x8000, 0x8000, 0x8000 };
 
-/** @brief Background for inactive tools (e.g. noncurrent tabs) */
-GdkColor offtool_bg = { 0, 0xC400, 0xC200, 0xBD00 };
-
 /** @brief Background color for the various layouts */
 GdkColor layout_bg = { 0, 0xFFFF, 0xFFFF, 0xFFFF };
 
@@ -97,7 +94,6 @@ struct colordesc {
 static const struct colordesc colors[] = {
   COLOR(tool_bg, "Tool background color"),
   COLOR(tool_fg, "Tool foreground color"),
-  COLOR(offtool_bg, "Subsiduary tool color"),
   COLOR(layout_bg, "Layout background color"),
   COLOR(title_bg, "Title row background color"),
   COLOR(title_fg, "Title row foreground color"),
index 5981229671a206290fddc822502a4f3a9cb62c51..dbc6882e039c4141b073673cff3eb70017800cdf 100644 (file)
@@ -247,7 +247,7 @@ void stop_rtp(void);
 
 /* Appearance */
 
-extern GdkColor tool_bg, tool_fg, offtool_bg, layout_bg, even_bg, odd_bg;
+extern GdkColor tool_bg, tool_fg, layout_bg, even_bg, odd_bg;
 extern GdkColor active_bg, selected_bg, selected_fg, search_bg;
 extern GdkColor title_bg, title_fg, item_fg, drag_target, tool_active;