Skip to content

Commit

Permalink
Merge pull request #17319 from victoryforce/case-fixes
Browse files Browse the repository at this point in the history
[GUI] Two case fixes in UI strings
  • Loading branch information
TurboGit committed Aug 21, 2024
2 parents ba32000 + 7ddd85e commit 79bd641
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/image.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ typedef enum dt_image_orientation_t
ORIENTATION_NULL = -1, //-1 $DESCRIPTION: "autodetect"
ORIENTATION_NONE = 0, // 0 $DESCRIPTION: "no rotation"
ORIENTATION_FLIP_Y = 1 << 0, // 1 $DESCRIPTION: "flip vertically"
ORIENTATION_FLIP_X = 1 << 1, // 2 $DESCRIPTION: "Flip horizontally"
ORIENTATION_FLIP_X = 1 << 1, // 2 $DESCRIPTION: "flip horizontally"
ORIENTATION_SWAP_XY = 1 << 2, // 4 $DESCRIPTION: "transpose"

/* ClockWise rotation == "-"; CounterClockWise rotation == "+" */
Expand Down
2 changes: 1 addition & 1 deletion src/libs/image.c
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ void gui_init(dt_lib_module_t *self)
(self, N_("refresh EXIF"), button_clicked, GINT_TO_POINTER(14),
_("update all image information to match changes to file\n"
"warning: resets star ratings unless you select\n"
"'ignore exif rating' in the 'import' module\n"), 0, 0);
"'ignore EXIF rating' in the 'import' module\n"), 0, 0);
gtk_grid_attach(grid, d->refresh_button, 0, line++, 6, 1);

d->set_monochrome_button = dt_action_button_new
Expand Down

0 comments on commit 79bd641

Please sign in to comment.