Summary: | knode rules-editor submenu "actions" is weird, while selecting "more" | ||
---|---|---|---|
Product: | [Unmaintained] knode | Reporter: | Martin Holz <martin> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | martin.mailinglist |
Priority: | NOR | ||
Version First Reported In: | 0.7.2 | ||
Target Milestone: | --- | ||
Platform: | openSUSE | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Patch for kdenetwork-3.1.5/libkdenetwork/kscoringeditor.cpp |
Description
Martin Holz
2003-08-07 08:52:30 UTC
If you choose "Nachricht anzeigen" (show news?) set up your rating and switch back to "Bewertung anpassen" (adjust score?). The ratings are adjusted correctly. Scoring is not the problem ... it's just the menu (see screenshots). Created attachment 4671 [details]
Patch for kdenetwork-3.1.5/libkdenetwork/kscoringeditor.cpp
This Patch changes the Position of the line "types->insertItem(QString::null);"
in "SingleActionWidget::SingleActionWidget(KScoringManager *m,QWidget *p, const
char *n)"
This Patch applies to kdenetwork-3.1.5
CVS commit by vkrause: Don't mix manually chosen and automatically assinged id's. CCMAIL: 62305-done@bugs.kde.org, 76075-done@bugs.kde.org M +1 -1 kscoringeditor.cpp 1.40 --- kdepim/libkdenetwork/kscoringeditor.cpp #1.39:1.40 @@ -188,5 +188,5 @@ SingleActionWidget::SingleActionWidget(K dummyLabel = new QLabel(i18n("Select an action."), stack); - stack->addWidget(dummyLabel); + stack->addWidget(dummyLabel, 0); // init widget stack and the types combo box |