String changes

This commit is contained in:
Kovid Goyal 2020-11-03 11:20:36 +05:30
parent 55cf40a781
commit 0ff2db7f7b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -212,7 +212,7 @@ class Central(QStackedWidget): # {{{
menu.addAction(actions['close-current-tab'].icon(), _('Close tab'), partial(self.close_requested.emit, ed))
menu.addSeparator()
menu.addAction(actions['close-all-but-current-tab'].icon(), _('Close other tabs'), partial(self.close_all_but, ed))
menu.addAction(actions['close-tabs-to-right-of'].icon(), _('Close tabs to right of this tab'), partial(self.close_to_right, ed))
menu.addAction(actions['close-tabs-to-right-of'].icon(), _('Close tabs to the right of this tab'), partial(self.close_to_right, ed))
menu.exec_(self.editor_tabs.tabBar().mapToGlobal(event.pos()))
return True