diff options
Diffstat (limited to 'utils/themeeditor/gui/skindocument.cpp')
| -rw-r--r-- | utils/themeeditor/gui/skindocument.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/skindocument.cpp b/utils/themeeditor/gui/skindocument.cpp index 6863ff5..f8206e1 100644 --- a/utils/themeeditor/gui/skindocument.cpp +++ b/utils/themeeditor/gui/skindocument.cpp @@ -151,6 +151,12 @@ void SkinDocument::setupUI() QObject::connect(device, SIGNAL(settingsChanged()), this, SLOT(deviceChanged())); + /* Attaching the find/replace dialog */ + findReplace = new FindReplaceDialog(this); + findReplace->setModal(false); + findReplace->setTextEdit(editor); + findReplace->hide(); + settingsChanged(); } |