Skip to content

Commit

Permalink
max value -> value. Shorter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Monin committed Feb 28, 2009
1 parent bbfd2a7 commit 7cc909a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/histogram.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const gchar *histogram_label(Histogram *histogram)
case HCHAN_G: t1 = _("Log Histogram on Green"); break;
case HCHAN_B: t1 = _("Log Histogram on Blue"); break;
case HCHAN_RGB: t1 = _("Log Histogram on RGB"); break;
case HCHAN_MAX: t1 = _("Log Histogram on max value"); break;
case HCHAN_MAX: t1 = _("Log Histogram on value"); break;
}
else
switch (histogram->histogram_channel)
Expand All @@ -118,7 +118,7 @@ const gchar *histogram_label(Histogram *histogram)
case HCHAN_G: t1 = _("Linear Histogram on Green"); break;
case HCHAN_B: t1 = _("Linear Histogram on Blue"); break;
case HCHAN_RGB: t1 = _("Linear Histogram on RGB"); break;
case HCHAN_MAX: t1 = _("Linear Histogram on max value"); break;
case HCHAN_MAX: t1 = _("Linear Histogram on value"); break;
}
return t1;
}
Expand Down

0 comments on commit 7cc909a

Please sign in to comment.