imf - fix x11 vs wl fix to leave x11 alone for those without scim
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 11 Aug 2014 02:05:41 +0000 (11:05 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 11 Aug 2014 02:05:41 +0000 (11:05 +0900)
scim has a nasty habit of sitting and hanging if tryng to set up and
no scim daemon is there. since in x11 you may have multiple input
methods, leave it to be manually set up via env var, and if not then
dont work at all.

src/lib/ecore_imf/ecore_imf_context.c

index 8a0cf1f..6955980 100644 (file)
@@ -73,9 +73,11 @@ ecore_imf_context_default_id_by_canvas_type_get(const char *canvas_type)
      }
    else
      {
-        if (getenv("DISPLAY")) id = "scim";
-        else if (getenv("WAYLAND_DISPLAY")) id = "wayland";
-        if (ecore_imf_module_get(id)) return id;
+        if (getenv("WAYLAND_DISPLAY"))
+          {
+             id = "wayland";
+             if (ecore_imf_module_get(id)) return id;
+          }
         return NULL;
      }