summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-20 13:07:54 (EST)
committer Patrick McDermott <pj@pehjota.net>2017-11-20 13:07:54 (EST)
commitcdd50b4b4ed650cb52c0a763a30f35ee56bab140 (patch)
tree97285fc8173402b31880306c8c8cc2e9c5acd7eb
parent84b7af808d8ad60a1571b502babc55f95c173a50 (diff)
downloadmarquee-cdd50b4b4ed650cb52c0a763a30f35ee56bab140.zip
marquee-cdd50b4b4ed650cb52c0a763a30f35ee56bab140.tar.gz
marquee-cdd50b4b4ed650cb52c0a763a30f35ee56bab140.tar.bz2
MqMainMenu: Remove some spaces to shorten a long line
-rw-r--r--src/toolbars/navigation/main-menu.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/toolbars/navigation/main-menu.c b/src/toolbars/navigation/main-menu.c
index fc857fc..4f7df80 100644
--- a/src/toolbars/navigation/main-menu.c
+++ b/src/toolbars/navigation/main-menu.c
@@ -321,31 +321,31 @@ create_main_grid(MqMainMenu *main_menu)
gtk_grid_set_row_homogeneous(GTK_GRID(grid), TRUE);
gtk_grid_set_column_homogeneous(GTK_GRID(grid), TRUE);
- /* Y, X, ID, ICON, LABEL,
+ /* Y, X, ID, ICON, LABEL,
* TOOLTIP */
- NEW_BTN(0, 0, new_window, "window-new", _("New Window"),
+ NEW_BTN(0, 0, new_window, "window-new", _("New Window"),
_("Open a new window");
- NEW_BTN(0, 1, find, "edit-find", _("Find"),
+ NEW_BTN(0, 1, find, "edit-find", _("Find"),
_("Find text in this page");
- NEW_BTN(0, 2, fullscreen, "view-fullscreen", _("Full Screen"),
+ NEW_BTN(0, 2, fullscreen, "view-fullscreen", _("Full Screen"),
_("Display the window in full screen"));
- /* Y, X, ID, ICON, LABEL,
+ /* Y, X, ID, ICON, LABEL,
* TOOLTIP */
- NEW_BTN(1, 0, open, "document-open", _("Open File"),
+ NEW_BTN(1, 0, open, "document-open", _("Open File"),
_("Open a local file");
- NEW_BTN(1, 1, save, "document-save-as", _("Save Page"),
+ NEW_BTN(1, 1, save, "document-save-as", _("Save Page"),
_("Save this page");
- NEW_BTN(1, 2, email_link, "mail-message-new", _("E-mail Link"),
+ NEW_BTN(1, 2, email_link, "mail-message-new", _("E-mail Link"),
_("E-mail a link to this page"));
- /* Y, X, ID, ICON, LABEL,
+ /* Y, X, ID, ICON, LABEL,
* TOOLTIP */
- NEW_BTN(2, 0, print_preview, "document-print-preview", _("Print Preview"),
+ NEW_BTN(2, 0, print_preview,"document-print-preview",_("Print Preview"),
_("Preview this page");
- NEW_BTN(2, 1, print, "document-print", _("Print"),
+ NEW_BTN(2, 1, print, "document-print", _("Print"),
_("Print this page");
- NEW_BTN(2, 2, inspector, "preferences-system", _("Inspector"),
+ NEW_BTN(2, 2, inspector, "preferences-system", _("Inspector"),
_("Open the Web inspector"));
gtk_widget_set_sensitive(BTN(1, 2), FALSE); /* E-mail link */