Skip to content

Commit

Permalink
Hide British spelling of enum value from doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Sep 30, 2023
1 parent 2c2061c commit 04041c5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/ui/dialogs/imageexportdlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,12 @@ namespace Wisteria::UI
/// @brief Color modes to save an image with.
enum class ColorMode
{
RGB, /*!< Color image.*/
Grayscale, /*!< Shades of gray (i.e., B & W).*/
Greyscale = Grayscale /*!< Shades of gray (i.e., B & W).*/
/// @brief Color image.
RGB,
/// @brief Shades of gray (i.e., B & W).
Grayscale,
/// @private
Greyscale = Grayscale
};
/// @private
ImageExportOptions() = default;
Expand Down

0 comments on commit 04041c5

Please sign in to comment.