Skip to content

Commit

Permalink
max Vozeler fix on zooming
Browse files Browse the repository at this point in the history
olivierbeltrando authored and t-8ch committed Jan 17, 2019
1 parent 0c63bb3 commit 3e75292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taterm.vala
Original file line number Diff line number Diff line change
@@ -172,7 +172,7 @@ class Taterm : Gtk.Application
{
bool handled = false;

if ((event.state | Gdk.ModifierType.CONTROL_MASK) != 0) {
if ((event.state & Gdk.ModifierType.CONTROL_MASK) != 0) {
switch (event.keyval) {
case Gdk.Key.minus:
font_scale /= 1 + FONT_SCALE_STEP;

0 comments on commit 3e75292

Please sign in to comment.