summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2004-03-21 20:02:47 +0000
committerMikael Magnusson <mikachu@comhem.se>2004-03-21 20:02:47 +0000
commitf870d32397649a4d14e67fc638a57b5669c1009b (patch)
treedf4138ecd864168244e9d0b7ade0c18051c5bb21 /openbox
parent39748e41800b03732b0745f6fcd76b61dd93769f (diff)
two hands raised, keepBorder added to <theme> section
Diffstat (limited to 'openbox')
-rw-r--r--openbox/client.c8
-rw-r--r--openbox/config.c6
2 files changed, 11 insertions, 3 deletions
diff --git a/openbox/client.c b/openbox/client.c
index a465f566..12bfb6a6 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -1257,8 +1257,12 @@ void client_setup_decor_and_functions(ObClient *self)
/* finally, the user can have requested no decorations, which overrides
everything (but doesnt give it a border if it doesnt have one) */
- if (self->undecorated)
- self->decorations = 0; //&= OB_FRAME_DECOR_BORDER;
+ if (self->undecorated) {
+ if (config_theme_keepborder)
+ self->decorations &= OB_FRAME_DECOR_BORDER;
+ else
+ self->decorations = 0;
+ }
/* if we don't have a titlebar, then we cannot shade! */
if (!(self->decorations & OB_FRAME_DECOR_TITLEBAR))
diff --git a/openbox/config.c b/openbox/config.c
index 4b58fbd9..151fdf45 100644
--- a/openbox/config.c
+++ b/openbox/config.c
@@ -33,7 +33,8 @@ gboolean config_focus_last;
ObPlacePolicy config_place_policy;
-gchar *config_theme;
+gchar *config_theme;
+gboolean config_theme_keepborder;
gchar *config_title_layout;
@@ -249,6 +250,8 @@ static void parse_theme(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
g_free(config_title_layout);
config_title_layout = parse_string(doc, n);
}
+ if ((n = parse_find_node("keepBorder", node)))
+ config_theme_keepborder = parse_bool(doc, n);
}
static void parse_desktops(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
@@ -541,6 +544,7 @@ void config_startup(ObParseInst *i)
config_theme = NULL;
config_title_layout = g_strdup("NLIMC");
+ config_theme_keepborder = TRUE;
parse_register(i, "theme", parse_theme, NULL);