Commit 945bd4e0b6dad3d90ef63f75322ec7a03dbfef4c
1 parent
efac1ab2
Exists in
master
and in
1 other branch
Small fixes.
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
src/dialogs/load.c
... | ... | @@ -247,6 +247,7 @@ static void icon_press(GtkEntry *entry, G_GNUC_UNUSED GtkEntryIconPosition icon_ |
247 | 247 | dialog->terminal = widget; |
248 | 248 | |
249 | 249 | gtk_window_set_title(GTK_WINDOW(dialog),_("Paste from file")); |
250 | + gtk_window_set_deletable(GTK_WINDOW(dialog),FALSE); | |
250 | 251 | |
251 | 252 | if(filename && *filename) |
252 | 253 | gtk_entry_set_text(GTK_ENTRY(dialog->filename),filename); | ... | ... |
src/testprogram/testprogram.c
... | ... | @@ -132,7 +132,7 @@ |
132 | 132 | GtkWidget * notebook = gtk_notebook_new(); |
133 | 133 | |
134 | 134 | // Hack to speed up the tests. |
135 | -// lib3270_disable_crl_download(v3270_get_session(terminal)); | |
135 | + lib3270_disable_crl_download(v3270_get_session(terminal)); | |
136 | 136 | |
137 | 137 | gtk_box_pack_start(GTK_BOX(vBox),create_toolbar(terminal),FALSE,TRUE,0); |
138 | 138 | gtk_box_pack_start(GTK_BOX(vBox),notebook,TRUE,TRUE,0); | ... | ... |