all repos — fluxbox @ 239c6739651ee049eab10dd65ed605da1eb06056

custom fork of the fluxbox windowmanager

fixed label text color
fluxgen fluxgen
commit

239c6739651ee049eab10dd65ed605da1eb06056

parent

10523692d670790b410e58f7673c0a8d4131aa10

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M src/Theme.ccsrc/Theme.cc

@@ -21,7 +21,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Theme.cc,v 1.32 2002/10/29 16:07:27 fluxgen Exp $ +// $Id: Theme.cc,v 1.33 2002/11/03 10:39:25 fluxgen Exp $ #ifndef _GNU_SOURCE #define _GNU_SOURCE

@@ -519,10 +519,12 @@

readDatabaseColor("toolbar.label.textColor", "Toolbar.Label.TextColor", &m_toolbarstyle.l_text, WhitePixel(m_display, m_screennum)); + readDatabaseColor("toolbar.windowLabel.textColor", "Toolbar.WindowLabel.TextColor", &m_toolbarstyle.w_text, WhitePixel(m_display, m_screennum)); + readDatabaseColor("toolbar.clock.textColor", "Toolbar.Clock.TextColor", &m_toolbarstyle.c_text, WhitePixel(m_display, m_screennum));

@@ -915,7 +917,7 @@ gcv.foreground = m_menustyle.hilite.color().pixel();

XChangeGC(m_display, m_menustyle.hilite_gc, gc_value_mask, &gcv); - gc_value_mask |= GCFont; + gcv.foreground = m_toolbarstyle.l_text.pixel(); XChangeGC(m_display, m_toolbarstyle.l_text_gc, gc_value_mask, &gcv);