From cc3f0c3a90a2e14e170e57c31098048154aa6605 Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Sat, 31 May 2008 21:26:49 +0000 Subject: [PATCH] Don't show Apply button as it doesn't work correctly, acked by Aaron svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=815001 --- applet.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/applet.cpp b/applet.cpp index 716bca76e..30b55f401 100644 --- a/applet.cpp +++ b/applet.cpp @@ -1116,8 +1116,9 @@ void Applet::showConfigurationInterface() createConfigurationInterface(dialog); //TODO: would be nice to not show dialog if there are no pages added? connect(dialog, SIGNAL(finished()), nullManager, SLOT(deleteLater())); + //TODO: Apply button does not correctly work for now, so do not show it + dialog->showButton( KDialog::Apply, false ); dialog->show(); - dialog->enableButtonApply(true); } emit releaseVisualFocus();