Skip to content

Commit

Permalink
use proper constants
Browse files Browse the repository at this point in the history
  • Loading branch information
t-8ch committed Aug 13, 2015
1 parent 7f00815 commit 7a1b0b0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions taterm.vala
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ class Taterm : Gtk.Application
add_window(new_win);
new_win.focus_out_event.connect(() => {
pwd = new_win.pwd;
/* TODO change to GDK_EVENT_PROPAGATE, when .vapi provides it */
return false;
return Gdk.EVENT_PROPAGATE;
});
});
}
Expand Down Expand Up @@ -123,8 +122,7 @@ class Taterm : Gtk.Application

focus_in_event.connect(() => {
urgency_hint = false;
/* TODO change to GDK_EVENT_PROPAGATE, when .vapi provides it */
return false;
return Gdk.EVENT_PROPAGATE;
});

term.child_exited.connect(() => {
Expand Down Expand Up @@ -177,8 +175,7 @@ class Taterm : Gtk.Application
);
}
/* continue calling signalhandlers, why should we stop? */
/* TODO change to GDK_EVENT_PROPAGATE, when .vapi provides it */
return false;
return Gdk.EVENT_PROPAGATE;
}

private void check_regex(long x_pos, long y_pos)
Expand Down

0 comments on commit 7a1b0b0

Please sign in to comment.