all repos — fluxbox @ 674bc079487048ad8d28704c6e951605e07bb371

custom fork of the fluxbox windowmanager

fixed decoration bug with MOTIF_WM_HINTS
fluxgen fluxgen
commit

674bc079487048ad8d28704c6e951605e07bb371

parent

42857269561d60d8e72460846a19a722c919a919

1 files changed, 3 insertions(+), 5 deletions(-)

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

@@ -22,7 +22,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: Window.cc,v 1.274 2004/03/30 14:31:30 fluxgen Exp $ +// $Id: Window.cc,v 1.275 2004/03/31 10:28:08 fluxgen Exp $ #include "Window.hh"

@@ -1045,11 +1045,10 @@ if (hint->decorations & MwmDecorBorder)

decorations.border = true; if (hint->decorations & MwmDecorHandle) decorations.handle = true; - if (hint->decorations & MwmDecorTitle) { + if (hint->decorations & MwmDecorTitle) { //only tab on windows with titlebar decorations.titlebar = decorations.tab = true; } - if (hint->decorations & MwmDecorMenu) decorations.menu = true; if (hint->decorations & MwmDecorIconify)

@@ -2241,6 +2240,7 @@ client.updateWMProtocols();

} else if (atom == fbatoms->getMWMHintsAtom()) { client.updateMWMHints(); updateMWMHintsFromClient(client); + applyDecorations(); // update decorations (if they changed) } else if (atom == fbatoms->getFluxboxHintsAtom()) { client.updateBlackboxHints(); updateBlackboxHintsFromClient(client);

@@ -3115,8 +3115,6 @@ &not_used)) {

#ifdef DEBUG cerr<<"FluxboxWindow::restore: reparent 0x"<<hex<<client->window()<<dec<<" to root"<<endl; #endif // DEBUG - if (!remap) - client->hide(); // reparent to root window client->reparent(screen().rootWindow().window(), frame().x(), frame().y()); }