diff options
author | raveit65 <[email protected]> | 2018-03-10 10:40:10 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-03-15 19:11:11 +0100 |
commit | 291facd39c8375ef79697469e9b1ed374d37ef85 (patch) | |
tree | 346bd9610d7dfeebcd79f065f430a7ffebf277d7 /shell | |
parent | 185e7b9e3d6abc3f47c7efcc3f6cdfdcf817bf7b (diff) | |
download | atril-291facd39c8375ef79697469e9b1ed374d37ef85.tar.bz2 atril-291facd39c8375ef79697469e9b1ed374d37ef85.tar.xz |
shell: fix menu-accel for inverted colors
fixes conflict with zoom_in
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ev-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c index eeec9f81..a3387df0 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -6446,7 +6446,7 @@ static const GtkToggleActionEntry toggle_entries[] = { { "ViewFitWidth", EV_STOCK_ZOOM_WIDTH, N_("Fit _Width"), "w", N_("Make the current document fill the window width"), G_CALLBACK (ev_window_cmd_view_fit_width) }, - { "ViewInvertedColors", EV_STOCK_INVERTED_COLORS, N_("_Inverted Colors"), "<control>I", + { "ViewInvertedColors", EV_STOCK_INVERTED_COLORS, N_("Inverted _Colors"), "<control>I", N_("Show page contents with the colors inverted"), G_CALLBACK (ev_window_cmd_view_inverted_colors) }, { "ViewCaretNavigation", "gtk-index", N_("Caret _Navigation"), "F7", |