[gnome-mud] ZMP: Temporarily disable zmp.input usage



commit df19014e1b816291a03cb1784021ec59f4519f3f
Author: Mart Raudsepp <leio gentoo org>
Date:   Wed Jul 19 23:54:43 2017 +0300

    ZMP: Temporarily disable zmp.input usage
    
    Some MUDs don't seem to like immediately receiving zmp.input instead of
    normal input without, or it just doesn't work right. Disable using
    zmp.input for main window until we figure out what is wrong.

 src/mud-connection-view.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/mud-connection-view.c b/src/mud-connection-view.c
index 3c83f58..c11881d 100644
--- a/src/mud-connection-view.c
+++ b/src/mud-connection-view.c
@@ -1945,7 +1945,7 @@ mud_connection_view_send(MudConnectionView *view, const gchar *data)
             else
                 g_object_get(zmp_handler, "enabled", &zmp_enabled, NULL);
 
-            if(!zmp_enabled)
+            if(TRUE) // FIXME: (!zmp_enabled)
             {
                 const gchar *line = (conv_text == NULL) ? text : conv_text;
                 mud_connection_send(view->conn, line, -1);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]