all repos — fluxbox @ dd933c097c0e585949c7200a0937684158f0056d

custom fork of the fluxbox windowmanager

fix label display with external tabs on some wins
simonb simonb
commit

dd933c097c0e585949c7200a0937684158f0056d

parent

b2105a62c378b013257cd1a79ea5a50b4a90a82f

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

jump to
M ChangeLogChangeLog

@@ -1,6 +1,9 @@

(Format: Year/Month/Day) Changes for 0.9.16: *06/04/17: + * Fix display of label for dialog-type boxes (Simon) + (only when external tabs are enabled, but not for particular window) + FbWinFrame.cc * Fix fbrun position setting (-pos and -nearmouse args) (Simon) util/fbrun/... FbRun.hh/cc main.cc * Resize the clock if the text gets too big, sf.net patch #1436406
M src/FbWinFrame.ccsrc/FbWinFrame.cc

@@ -1216,7 +1216,7 @@ unsigned char alpha = (m_focused?theme().focusedAlpha():theme().unfocusedAlpha());

m_titlebar.setAlpha(alpha); m_label.setAlpha(alpha); - if (externalTabMode()) { + if (m_tabmode != INTERNAL) { m_label.setGC(m_focused?theme().labelTextFocusGC():theme().labelTextUnfocusGC()); m_label.setJustify(theme().justify());