Bug 129291 - [patch] x11-wm/windowmaker - openoffice full screen presentation issues
Summary: [patch] x11-wm/windowmaker - openoffice full screen presentation issues
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Doug Barton
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-30 10:20 UTC by keef
Modified: 2008-12-31 10:20 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description keef 2008-11-30 10:20:04 UTC
(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);
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2008-11-30 10:20:19 UTC
Responsible Changed
From-To: freebsd-ports-bugs->dougb

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2008-12-31 10:12:01 UTC
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"
Comment 3 Doug Barton freebsd_committer freebsd_triage 2008-12-31 10:12:25 UTC
State Changed
From-To: open->closed


Fix committed, thanks!