all repos — fluxbox @ 41775ff631ac2e72c90b76ce2b9e4217148cbe53

custom fork of the fluxbox windowmanager

fixed bug [ 515483 ] XMMS Problem, with the handles = true
fluxgen fluxgen
commit

41775ff631ac2e72c90b76ce2b9e4217148cbe53

parent

da517e6074441019cc25226c0538b956be01a0fc

1 files changed, 4 insertions(+), 3 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.47 2002/04/26 18:27:39 fluxgen Exp $ +// $Id: Window.cc,v 1.48 2002/04/28 20:09:31 fluxgen Exp $ #include "Window.hh"

@@ -239,8 +239,9 @@ }

// adjust the window decorations based on transience and window sizes if (transient) { - decorations.maximize = decorations.handle = - decorations.border = functions.maximize = false; + decorations.maximize = functions.maximize = false; + //we can still use the handles to resize it + decorations.handle = decorations.border = true; } if ((client.normal_hint_flags & PMinSize) &&