Summary: | Drop-down lists of toolbar combo views don't appear with UI effects on | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Lukasz Wojtylak <rufio> |
Component: | general | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 3.0.0 | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Lukasz Wojtylak
2004-02-09 00:17:42 UTC
KDevelop ?????? Yes, KDevelop. It applies to a special widget class KDevelop maintains for itself, declared in kdevelop-3.0.0/lib/widgets/qcomboview.h, defined in kdevelop-3.0.0/lib/widgets/qcomboview.cpp. All stock Qt and KDE widgets work OK for me. Confirmed. Sacu, maybe this is the problem you had with comboview? CVS commit by dymo: Disabled combo box animation because this doesn't work anymore. CCMAIL: 74650-done@bugs.kde.org M +2 -2 qcomboview.cpp 1.14 --- kdevelop/lib/widgets/qcomboview.cpp #1.13:1.14 @@ -778,10 +778,10 @@ void QComboView::popup() //#ifndef QT_NO_EFFECTS - if ( QApplication::isEffectEnabled( UI_AnimateCombo ) ) { +/* if ( QApplication::isEffectEnabled( UI_AnimateCombo ) ) { if ( lb->y() < mapToGlobal(QPoint(0,0)).y() ) qScrollEffect( lb, QEffects::UpScroll ); else qScrollEffect( lb ); - } else + } else*/ //#endif lb->show(); Hi Alexander, that's exactly my problem. And it seems solved for me too, now :-) Thanks Lukasz! You don't imagine how many hours i already spend on looking qcomboview.cpp up and down searching for this problem :-) Cheers Sascha I can imagine, since my first hypothesis was the combos aren't filled up at all and I spent the whole Sunday afternoon to discover the real source of the problem. Regards, Lukasz Wojtylak "Rufio" |