Commit 60b3556f95c85683820a0d648abf9c72d43e43c6

Authored by Perry Werneck
1 parent 092f28fb
Exists in master and in 1 other branch develop

Fixing windows build

Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
src/terminal/widget.c
@@ -816,8 +816,10 @@ gboolean v3270_focus_out_event(GtkWidget *widget, GdkEventFocus *event) @@ -816,8 +816,10 @@ gboolean v3270_focus_out_event(GtkWidget *widget, GdkEventFocus *event)
816 816
817 gtk_im_context_focus_out(terminal->input_method); 817 gtk_im_context_focus_out(terminal->input_method);
818 818
  819 +#ifdef KEY_FLAG_ALT
819 terminal->keyflags &= ~KEY_FLAG_ALT; 820 terminal->keyflags &= ~KEY_FLAG_ALT;
820 v3270_draw_alt_status(terminal); 821 v3270_draw_alt_status(terminal);
  822 +#endif // KEY_FLAG_ALT
821 823
822 return notify_focus(widget,event); 824 return notify_focus(widget,event);
823 } 825 }