Summary: | KPresenter forces Dissappear affect on me :( | ||
---|---|---|---|
Product: | [Applications] calligrastage | Reporter: | Hannes H <bugzilla> |
Component: | general | Assignee: | T Zachmann <t.zachmann> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | FreeBSD Ports | ||
OS: | FreeBSD | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Script to remove ALL hide effects for objects |
Description
Hannes H
2007-05-14 19:14:09 UTC
Hello, can you please attach the presentation where you get the problem. Which version of kpresenter are you using. Can you also describe which steps you do so I can try to reproduce the problem. Thanks for your help Thorsten i am using kpresenter 1.6.2 on kde3.5.6 on freebsd-current steps: open the presentation go to third slide pick an object, e.g. one of the frames in the bottom right corner right-click, edit object effect you will see that the disappear box is checked uncheck it save and exit reopen, look at the object property again thank you !!! p.s.: could upload the file here so its available @ http://userpage.spline.inf.fu-berlin.de/~hannes/eigene_sachen/presentation2.odp Created attachment 20570 [details]
Script to remove ALL hide effects for objects
Looks like you found a bug.
There is a workaround. Select a object set the disappear effect to "No Effect"
and then deselect the Disappear checkbox. After that the disappear effect will
no longer be saved.
You can also use the attached script to remove ALL disappear effects in your
presentation. I have tested it shortly but you should make a backup of your
presentation in case something goes wrong.
I will commit a patch to fix this problem shortly so the fix will be in koffice
1.6.3 .
Hope this helps,
Thorsten
SVN commit 664901 by zachmann: o Fix: Bug 145431: KPresenter forces Dissappear affect on me :( BUG: 145431 M +1 -3 KPrPage.cpp --- branches/koffice/1.6/koffice/kpresenter/KPrPage.cpp #664900:664901 @@ -166,9 +166,7 @@ listObjectAnimation.insert( it.current()->getAppearStep(), tmp2 ); } } - if ( it.current()->getEffect3() != EF3_NONE || - it.current()->getDisappear() || - ! it.current()->getDisappearSoundEffectFileName().isEmpty()) + if ( it.current()->getDisappear() ) { listAnimation *lstappear = new listAnimation; lstappear->obj = it.current(); thank you very much! |