about summary refs log tree commit diff stats
path: root/src/ui/windows.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-09-17 00:49:06 +0100
committerJames Booth <boothj5@gmail.com>2014-09-17 00:49:06 +0100
commit60eedc7c6dcb23e7596e1791843e0ce8cf92269a (patch)
treed1be7e0a9ce8859bb01806e67b0ce1e363257559 /src/ui/windows.c
parent0de9c1bddaa8d429a8ff1abced19137c8c51a561 (diff)
downloadprofani-tty-60eedc7c6dcb23e7596e1791843e0ce8cf92269a.tar.gz
Added field updated message, show form mofified indicator for /wins
Diffstat (limited to 'src/ui/windows.c')
-rw-r--r--src/ui/windows.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/windows.c b/src/ui/windows.c
index ff7fc3e2..a2d8276a 100644
--- a/src/ui/windows.c
+++ b/src/ui/windows.c
@@ -618,6 +618,9 @@ wins_create_summary(void)
             case WIN_MUC_CONFIG:
                 muc_config_string = g_string_new("");
                 g_string_printf(muc_config_string, "%d: %s", ui_index, window->from);
+                if ((window->form != NULL) && (window->form->modified)) {
+                    g_string_append(muc_config_string, " *");
+                }
                 result = g_slist_append(result, strdup(muc_config_string->str));
                 g_string_free(muc_config_string, TRUE);