diff options
author | Rr42 | 2018-06-29 20:05:46 +0530 |
---|---|---|
committer | Rr42 | 2018-06-29 20:05:46 +0530 |
commit | 61ffc674a34b8c3ff9c986dedfe90072b5a16369 (patch) | |
tree | 85de2c62f944d6afe75cde493035245098b8fbf4 /ldmicro/contactsdialog.cpp | |
parent | c263989e44c4a6449787552ece3de72303dd1818 (diff) | |
download | LDMicroGtk-61ffc674a34b8c3ff9c986dedfe90072b5a16369.tar.gz LDMicroGtk-61ffc674a34b8c3ff9c986dedfe90072b5a16369.tar.bz2 LDMicroGtk-61ffc674a34b8c3ff9c986dedfe90072b5a16369.zip |
Patch: Fixes bug where the IoList table did not update on name change.
Diffstat (limited to 'ldmicro/contactsdialog.cpp')
-rw-r--r-- | ldmicro/contactsdialog.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ldmicro/contactsdialog.cpp b/ldmicro/contactsdialog.cpp index bf896fa..38750c8 100644 --- a/ldmicro/contactsdialog.cpp +++ b/ldmicro/contactsdialog.cpp @@ -128,6 +128,7 @@ void ContactsDialogGetData (BOOL* negated, char* name){ strcpy (name+1, gtk_entry_get_text (GTK_ENTRY (NameTextbox))); DestroyWindow (ContactsDialog); + ProgramChanged(); gtk_widget_set_sensitive (MainWindow, TRUE); } @@ -143,6 +144,7 @@ gboolean ContactsDialogKeyPress (HWID widget, GdkEventKey* event, gpointer data) } else if (event -> keyval == GDK_KEY_Escape){ DestroyWindow (ContactsDialog); + ProgramChanged(); gtk_widget_set_sensitive (MainWindow, TRUE); } return FALSE; @@ -150,6 +152,7 @@ gboolean ContactsDialogKeyPress (HWID widget, GdkEventKey* event, gpointer data) void ContactsCallDestroyWindow (HWID widget, gpointer data){ DestroyWindow (ContactsDialog); + ProgramChanged(); gtk_widget_set_sensitive (MainWindow, TRUE); } |