Skip to content
This repository was archived by the owner on Nov 11, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/TerminalWidget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,13 @@ public class TerminalWidget : GtkClutter.Embed, NestingContainerChild {

context_menu.append(new Gtk.SeparatorMenuItem());

menu_item = new Gtk.MenuItem.with_label(_("Split Horizontally"));
menu_item = new Gtk.MenuItem.with_label(_("Split Vertically"));
menu_item.activate.connect(() => {
split(Gtk.Orientation.HORIZONTAL);
});
context_menu.append(menu_item);

menu_item = new Gtk.MenuItem.with_label(_("Split Vertically"));
menu_item = new Gtk.MenuItem.with_label(_("Split Horizontally"));
menu_item.activate.connect(() => {
split(Gtk.Orientation.VERTICAL);
});
Expand Down