Skip to content

Commit

Permalink
Merge pull request #1966 from Davidy22/split
Browse files Browse the repository at this point in the history
Replace | with non unicode dependent |

Fix #1845
  • Loading branch information
mlouielu authored Nov 2, 2021
2 parents a084a1d + 8628540 commit b187bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guake/menus.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def mk_terminal_context_menu(terminal, window, settings, callback_object):
mi = Gtk.MenuItem(_("Split ―"))
mi.connect("activate", callback_object.on_split_horizontal)
menu.add(mi)
mi = Gtk.MenuItem(_("Split "))
mi = Gtk.MenuItem(_("Split |"))
mi.connect("activate", callback_object.on_split_vertical)
menu.add(mi)
mi = Gtk.MenuItem(_("Close terminal"))
Expand Down

0 comments on commit b187bdc

Please sign in to comment.