Re: ObRender-Message: Unable to parse color '#bbbbbb '
E R <[email protected]>
| Newsgroups | gmane.comp.window-managers.openbox |
|---|---|
| Message-ID | <CAB1i-Sx04qSYxX1dhRfBgDXN5zc-FeqO+iVsv1JVOY5b-WYxHw@mail.gmail.com> |
Nope the 2.0.4 source and from git both show this message ObRender-Message: Unable to parse color '#bbbbbb ' Also I'm attaching a patch that is needed for both of them to compile, which I thought had already been fixed in the git version. thanks On Wed, Mar 26, 2014 at 11:24 AM, E R <[email protected]> wrote: > Sorry remove the trailing space where? > > I'm pretty sure I grabbed the latest version out of git too, but I'll go > back and double check that... > > thanks > > > On Wed, Mar 26, 2014 at 3:40 AM, Dana Jansens <[email protected]> wrote: > >> On Wed, Mar 26, 2014 at 2:42 AM, E R <[email protected]> wrote: >> >>> In Slackware 14.1 x86_64 I compiled Openbox 3.5.0 and obconf 2.04 and >>> when I run obconf from a terminal I'm seeing these messages; >>> >>> ObRender-Message: Unable to parse color '#bbbbbb ' >>> >> >> Remove the trailing space. I think this was fixed in a later version IIRC >> to strip the whitespace. >> >> >>> >>> To be honest I don't recall seeing this last year when I was using this >>> same version of Openbox & obconf in Slackware 14.0 >>> >>> Anyone know what is up with this, and how I can fix it? >>> >>> thanks >>> >>> _______________________________________________ >>> openbox mailing list >>> [email protected] >>> http://icculus.org/mailman/listinfo/openbox >>> >>> >> >> _______________________________________________ >> openbox mailing list >> [email protected] >> http://icculus.org/mailman/listinfo/openbox >> >> > _______________________________________________ openbox mailing list [email protected] http://icculus.org/mailman/listinfo/openbox
obconf_git_preview.patch
(text/x-patch, 1.8 KB)
Patch by Andrew Rowland <[email protected]> --- obconf-orig/src/preview.c 2012-01-13 15:51:59.000000000 -0500 +++ obconf/src/preview.c 2012-01-13 15:53:39.000000000 -0500 @@ -327,28 +327,28 @@ switch (*layout) { case 'D': a = focus ? - theme->btn_desk->a_focused_unpressed : - theme->btn_desk->a_unfocused_unpressed; + theme->a_focused_unpressed_desk : + theme->a_unfocused_unpressed_desk; break; case 'S': a = focus ? - theme->btn_shade->a_focused_unpressed : - theme->btn_shade->a_unfocused_unpressed; + theme->a_focused_unpressed_shade : + theme->a_unfocused_unpressed_shade; break; case 'I': a = focus ? - theme->btn_iconify->a_focused_unpressed : - theme->btn_iconify->a_unfocused_unpressed; + theme->a_focused_unpressed_iconify : + theme->a_unfocused_unpressed_iconify; break; case 'M': a = focus ? - theme->btn_max->a_focused_unpressed : - theme->btn_max->a_unfocused_unpressed; + theme->a_focused_unpressed_max : + theme->a_unfocused_unpressed_max; break; case 'C': a = focus ? - theme->btn_close->a_focused_unpressed : - theme->btn_close->a_unfocused_unpressed; + theme->a_focused_unpressed_close : + theme->a_unfocused_unpressed_close; break; default: continue;