Skip to content
Merged
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
8 changes: 7 additions & 1 deletion src/iop/crop.c
Original file line number Diff line number Diff line change
Expand Up @@ -1388,13 +1388,19 @@ void gui_init(dt_iop_module_t *self)

g_signal_connect(G_OBJECT(g->aspect_presets), "value-changed",
G_CALLBACK(_event_aspect_presets_changed), self);

gtk_widget_set_tooltip_text
(g->aspect_presets,
_("set the aspect ratio\n"
"the list is sorted: from most square to least square\n"
"to enter custom aspect ratio open the combobox and type ratio in x:y"
" or decimal format"));
dt_bauhaus_widget_set_quad(g->aspect_presets, self, dtgtk_cairo_paint_aspectflip, FALSE, _event_aspect_flip, NULL);
dt_bauhaus_widget_set_quad(g->aspect_presets,
self,
dtgtk_cairo_paint_aspectflip,
FALSE,
_event_aspect_flip,
_("flip crop orientation between horizontal and vertical"));

GtkWidget *box_enabled = dt_gui_vbox(g->aspect_presets);

Expand Down
Loading