~elementary-apps/pantheon-terminal/new-protocols

« back to all changes in this revision

Viewing changes to src/PantheonTerminalWindow.vala

  • Committer: David Gomes
  • Date: 2012-09-13 13:01:28 UTC
  • Revision ID: davidrafagomes@gmail.com-20120913130128-ocu5r42s8o304vdz
Code style fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
                    case Gdk.Key.@8:
202
202
                        if ((e.state & Gdk.ModifierType.MOD1_MASK) != 0) {
203
203
                            var i = e.keyval - 49;
204
 
                            if (i > (this.notebook.n_tabs-1))
 
204
                            if (i > this.notebook.n_tabs - 1)
205
205
                                return false;
206
206
                            this.notebook.current = this.notebook.get_tab_by_index ((int) i);
207
207
                            return true;