about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/plasma-desktop/ibus.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/plasma-5/plasma-desktop/ibus.patch')
-rw-r--r--pkgs/desktops/plasma-5/plasma-desktop/ibus.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/desktops/plasma-5/plasma-desktop/ibus.patch b/pkgs/desktops/plasma-5/plasma-desktop/ibus.patch
deleted file mode 100644
index d5ac4b250875..000000000000
--- a/pkgs/desktops/plasma-5/plasma-desktop/ibus.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Index: plasma-desktop-5.8.5/kcms/keyboard/xkb_helper.cpp
-===================================================================
---- plasma-desktop-5.8.5.orig/kcms/keyboard/xkb_helper.cpp
-+++ plasma-desktop-5.8.5/kcms/keyboard/xkb_helper.cpp
-@@ -185,21 +185,5 @@ bool XkbHelper::initializeKeyboardLayout
- 
- bool XkbHelper::preInitialize()
- {
--    // stop ibus so it does not mess with our layouts, we can remove this when we integrate IM into keyboard module
--
--    QString ibusExe = QStandardPaths::findExecutable(QStringLiteral("ibus"));
--    if( ibusExe.isEmpty() ) {
--        return 0;
--    }
--
--    KProcess ibusProcess;
--    ibusProcess << ibusExe << QStringLiteral("exit");
--    ibusProcess.setOutputChannelMode(KProcess::SeparateChannels);
--    int res = ibusProcess.execute();
--
--    if( res == 0 ) {
--        qCWarning(KCM_KEYBOARD) << "ibus successfully stopped";
--    }
--
-     return 0;
- }