Skip to content

Commit

Permalink
Compilation + t8ch fix for zooming
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierbeltrando authored and t-8ch committed Jan 15, 2019
1 parent 0c2af74 commit 0c63bb3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ There may be special support for various window managers in the future.
* Scroll lock (WIP)
* Clean build under latest GTK (3.3.18)

##LICENSE
# Prerequisites

* The Vala compiler
* libvte-2.91-dev

## LICENSE

GPLv3
2 changes: 1 addition & 1 deletion taterm.vala
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class Taterm : Gtk.Application
{
bool handled = false;

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

0 comments on commit 0c63bb3

Please sign in to comment.