Version: 0.7.2 (using KDE 3.1.3) Installed from: SuSE Compiler: gcc-2.95.3-216 OS: Linux (i686) release 2.4.18-4GB I tried to set up some rules in knode. This works fine, but the select-menu within actions is weird ... the first entry does nothing. The second entry shows the options for the first entry, the third entry shows the options for the second entry, the fourth entry (empty) shows the options for the third entry. Sorry for this kind of description - im not really awake yet. For a screenshot of this problem feel free to visit http://www.martinholz.de/samples/knode.html
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