(Forwarded from an earlier email by Edwin Groothuis <edwin@mavetju.org>) Hello. I'm a Japanese and a beginner in FreeBSD. I had been troubled by a bug with wmaker ver. 0.92.0_4 or earlier ones. The bug is that OpenOffice Impress can not show slides in fullscreen correctly (Slides are off to the side from the center of the screen). As you may already know, the same bug has been reported by so many users and there is a patch which fixes this bug. I tried this patch and fullscreen presentations in OpenOffice impress worked correctly. Sorry for my poor English, yours sincerely, Keef Fix: --- src/event.c +++ src/event.c @@ -559,6 +559,10 @@ wwin->flags.skip_next_animation = 1; wIconifyWindow(wwin); } + if (wwin->flags.fullscreen) { + wwin->flags.fullscreen = 0; + wFullscreenWindow(wwin); + } if (wwin->flags.hidden) { WApplication *wapp = wApplicationOf(wwin->main_window);
Responsible Changed From-To: freebsd-ports-bugs->dougb Over to maintainer (via the GNATS Auto Assign Tool)
dougb 2008-12-31 10:11:47 UTC FreeBSD ports repository Added files: x11-wm/windowmaker/files patch-src_event.c Log: Fix issues with fullscreen mode, particularly for OpenOffice. Patch comes from the PR, confirmed in latest version of WindowMaker sources. PR: ports/129291 Submitted by: keef <hardcss@yahoo.co.jp> Revision Changes Path 1.1 +13 -0 ports/x11-wm/windowmaker/files/patch-src_event.c (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Fix committed, thanks!