sent bug report to kde
http://bugs.kde.org/show_bug.cgi?id=60117
I've made a qickfix that fixes this annoying bug. If you don't want to
wait for the kde guys really fixing the bug, I suggest inclusion of this
patch in kdenetwork.
However, In the bug report I told the kde developers that I'd much
prefer to have the dummy label itself removed because that one is the
real source of the problem.
Mark
--- kdenetwork-3.1.3/libkdenetwork/kscoringeditor.cpp.orig 2003-07-13
21:30:30.000000000 +0200
+++ kdenetwork-3.1.3/libkdenetwork/kscoringeditor.cpp 2003-08-05 00:01:58.000000000
+0200
@@ -187,6 +187,7 @@
dummyLabel = new QLabel(i18n("Select an action:"), stack);
stack->addWidget(dummyLabel);
+ types->insertItem(QString::null);
// init widget stack and the types combo box
int index = 1;
@@ -211,7 +212,6 @@
stack->addWidget(w,index++);
}
}
- types->insertItem(QString::null);
connect(types,SIGNAL(activated(int)),stack,SLOT(raiseWidget(int)));