Launchpad has imported 5 comments from the remote bug at https://bugzilla.xfce.org/show_bug.cgi?id=7436.
If you reply to an imported comment from within Launchpad, your comment will be sent to the remote bug automatically. Read more about Launchpad's inter-bugtracker facilities at https://help.launchpad.net/InterBugTracking. ------------------------------------------------------------------------ On 2011-03-23T11:42:09+00:00 Mark wrote: Hi, When a window is maximized so it fills the whole screen, its top border is still shown. The top border in this state is useless though, since it cannot be dragged to resize the maximized window. So it just wastes space. For most xfwm4 styles/themes this doesn't actually look too bad. But with a theme with relatively thick window borders it can look quite ugly. To see what I mean, change the window manager style to "Mofit" then maximize a window. Reply at: https://bugs.launchpad.net/ubuntu/+source/xfwm4/+bug/904958/comments/0 ------------------------------------------------------------------------ On 2011-12-15T20:28:42+00:00 Mark wrote: I might have found the cause of the problem. In src/frame.c, the frameTop() definition does not have similar checks for CLIENT_FLAG_MAXIMIZED as the frameLeft(), frameRight() and frameBottom() functions. Should the frameTop() function be changed to read something like this? int frameTop (Client * c) { TRACE ("entering frameTop"); g_return_val_if_fail (c != NULL, 0); if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_BORDER) && !FLAG_TEST (c->flags, CLIENT_FLAG_FULLSCREEN) && (!FLAG_TEST_ALL (c->flags, CLIENT_FLAG_MAXIMIZED) // This condition added || !(c->screen_info->params->borderless_maximize))) // This condition added { return c->screen_info->title[TITLE_3][ACTIVE].height; } return 0; } Reply at: https://bugs.launchpad.net/ubuntu/+source/xfwm4/+bug/904958/comments/1 ------------------------------------------------------------------------ On 2011-12-15T20:56:53+00:00 Olivier Fourdan wrote: Removing the top border when maximized would break most themes, not something I would like just for a few themes such as the Motif like theme. Not something I would fix. Reply at: https://bugs.launchpad.net/ubuntu/+source/xfwm4/+bug/904958/comments/3 ------------------------------------------------------------------------ On 2013-12-08T21:04:17+00:00 Cedric Leporcq wrote: Hello, I’ve managed to implement this feature without breaking old themes. look at #9905 Reply at: https://bugs.launchpad.net/ubuntu/+source/xfwm4/+bug/904958/comments/5 ------------------------------------------------------------------------ On 2014-11-21T12:58:07+00:00 Landry-o wrote: See #9905 for work on this and patches, resolving this one as duplicate *** This bug has been marked as a duplicate of bug 9905 *** Reply at: https://bugs.launchpad.net/ubuntu/+source/xfwm4/+bug/904958/comments/6 ** Changed in: xfwm4 Status: Unknown => Invalid ** Changed in: xfwm4 Importance: Unknown => Low -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/904958 Title: xfwm4: top border still present when window is maximized To manage notifications about this bug go to: https://bugs.launchpad.net/xfwm4/+bug/904958/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
