Skip to content

Commit 4ef836b

Browse files
committed
Clarified labels
See: #19
1 parent aa7777a commit 4ef836b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResizePage.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace Resizer {
3737
intro_label.margin_bottom = spacing/2;
3838

3939
// Width input
40-
var width_label = new Gtk.Label (_("Width:"));
40+
var width_label = new Gtk.Label (_("Max width:"));
4141
width_label.halign = Gtk.Align.END;
4242

4343
width_entry = new Gtk.SpinButton.with_range (1, 10000, 1000);
@@ -54,7 +54,7 @@ namespace Resizer {
5454
width_input.add(new Gtk.Label (""));
5555

5656
// height input
57-
var height_label = new Gtk.Label (_("Height:"));
57+
var height_label = new Gtk.Label (_("Max height:"));
5858
height_label.halign = Gtk.Align.START;
5959

6060
height_entry = new Gtk.SpinButton.with_range (1, 10000, 1000);

0 commit comments

Comments
 (0)