Skip to content

Commit

Permalink
halscope: change "Gain" to "Scale"
Browse files Browse the repository at this point in the history
This describes the setting better and also is the common way how it is labeled on oscilloscopes.
  • Loading branch information
hansu committed Nov 22, 2024
1 parent 636da80 commit 5a5af18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hal/utils/scope_vert.c
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ static void init_vert_info_window(void)
0);
/* box for the scale slider */
vbox = gtk_vbox_new_in_box(FALSE, 0, 0, hbox, TRUE, TRUE, 0);
gtk_label_new_in_box(_("Gain"), vbox, FALSE, FALSE, 0);
gtk_label_new_in_box(_("Scale"), vbox, FALSE, FALSE, 0);
vert->scale_adj = gtk_adjustment_new(0, -5, 5, 1, 1, 0);
vert->scale_slider = gtk_scale_new(
GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT(vert->scale_adj));
Expand Down

0 comments on commit 5a5af18

Please sign in to comment.