all repos — fluxbox @ 2f2e2185c35ff14a0fd9f5ba7b22c5d68cfd1c84

custom fork of the fluxbox windowmanager

fix invisible minimize button
rathnor rathnor
commit

2f2e2185c35ff14a0fd9f5ba7b22c5d68cfd1c84

parent

139b501112306c74f62102aa7f41b15a19f1c2d4

2 files changed, 5 insertions(+), 2 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.6: +*03/09/22: + * Fix invisible minimize button for non-pixmap themes (Simon) + WinButton.cc *03/09/21: * Fix disappearing close button (Simon) WinClient.hh/cc
M src/WinButton.ccsrc/WinButton.cc

@@ -19,7 +19,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: WinButton.cc,v 1.14 2003/09/14 17:34:47 fluxgen Exp $ +/// $Id: WinButton.cc,v 1.15 2003/09/22 12:07:00 rathnor Exp $ #include "WinButton.hh" #include "App.hh"

@@ -118,7 +118,7 @@ }

if (used) { FbTk::FbWindow::clear(); - } else if (gc() == 0) { // must have valid graphic context + } else if (gc() != 0) { // must have valid graphic context FbTk::FbWindow::drawRectangle(gc(), 2, height() - 5, width() - 5, 2); }