Displaying 1 result from an estimated 1 matches for "decorsetdisplayopt".
2007 Oct 12
1
[PATCH] Start window decorator on all screens.
---
plugins/decoration.c | 15 ++++-----------
1 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/plugins/decoration.c b/plugins/decoration.c
index ef68ba8..39670ab 100644
--- a/plugins/decoration.c
+++ b/plugins/decoration.c
@@ -1145,21 +1145,14 @@ decorSetDisplayOption (CompPlugin *plugin,
case DECOR_DISPLAY_OPTION_COMMAND:
if (compSetStringOption (o, value))
{
- if (display->screens && *o->value.s != '\0')
+ CompScreen *s;
+
+ for (s = display->screens; s; s = s->next)
{
DECOR_SCREEN (display->...