| Issue 71: | Preferences dialog doesn't appear in OpenSUSE 11.2 | |
| 4 people starred this issue and may be notified of changes. | Back to list |
Originally reported by Fahad.Alsaidi in Issue 67 : Clicking the preferences button doesn't do anythin, nothing strange printed in terminal.
Feb 23, 2010
Project Member
#1
roberto.alsina
Feb 24, 2010
I have the same problem.
Feb 24, 2010
I need a hand here, I just can't reproduce it :-( Any chance of 1 hour with remote, unprivileged access to a box having this problem?
Feb 25, 2010
I've bisected the problem to this update: r358 Author: roberto.alsina <roberto.alsina@57fa06e0-0c1b-11df-9e2b-972ea447d3bf> Date: Fri Feb 19 15:04:49 2010 +0000 Starting big code cleanup. Killed the animatedopacity class, now Marave requires Qt 4.6 I have a feeling it's a Qt4.5 vs 4.6 problem but i'm not sure what it is yet.
Feb 27, 2010
Still the same problem.
Feb 27, 2010
Issue 74 has been merged into this issue.
Feb 27, 2010
I tried r437 and I'm getting the same error.
Feb 27, 2010
The following patch solves the problem for me. It was a missing call to the later()
function.
diff --git a/marave/main.py b/marave/main.py
index 7c927af..8dd574c 100644
--- a/marave/main.py
+++ b/marave/main.py
@@ -208,6 +208,8 @@ def animheight(thing, target, thendo=None):
thing.hanim.finished.connect(thendo)
else:
thing.resize(thing.width(),target)
+ if thendo:
+ thendo()
class FunkyButton(QtGui.QPushButton):
def __init__(self, icon, text, scene, name=None):
Feb 27, 2010
Applied the path from comment 9 as r438, please check
Mar 1, 2010
Since filipe created the patch and andrés has a bug with focus where the prefs are visible, I assume this works now ;-)
Status:
Fixed
Mar 1, 2010
I checked r438 version and the bug is fixed. Thanks |