Skip to content

Commit

Permalink
gtk_widget_set_margin_end too new as highlighted in #commitcomment-76…
Browse files Browse the repository at this point in the history
…89638
  • Loading branch information
antenore committed Sep 7, 2014
1 parent e24a84e commit 1135cad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions remmina/src/remmina_file_editor.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ static GtkWidget* remmina_file_editor_create_text(RemminaFileEditor* gfe, GtkGri

widget = gtk_label_new(label);
gtk_widget_show(widget);
gtk_widget_set_margin_end (GTK_MISC(widget), 40);
gtk_widget_set_margin_right (GTK_MISC(widget), 40);
gtk_misc_set_alignment(GTK_MISC(widget), 0.0, 0.5);
gtk_grid_attach(GTK_GRID(table), widget, 0, row, 1, 1);

Expand Down Expand Up @@ -659,13 +659,13 @@ static void remmina_file_editor_create_settings(RemminaFileEditor* gfe, GtkGrid*
widget = gtk_label_new(_("Horizontal scale"));
gtk_widget_show(widget);
gtk_misc_set_alignment(GTK_MISC(widget), 0.0, 0.5);
gtk_widget_set_margin_end(GTK_MISC(widget), 40);
gtk_widget_set_margin_right(GTK_MISC(widget), 40);
gtk_grid_attach(GTK_GRID(table), widget, 0, row, 1, row + 1);

widget = gtk_label_new(_("Vertical scale"));
gtk_widget_show(widget);
gtk_misc_set_alignment(GTK_MISC(widget), 0.0, 0.5);
gtk_widget_set_margin_end(GTK_MISC(widget), 40);
gtk_widget_set_margin_right(GTK_MISC(widget), 40);
gtk_grid_attach(GTK_GRID(table), widget, 0, row + 1, 1, row + 2);

widget = remmina_scaler_new();
Expand Down

0 comments on commit 1135cad

Please sign in to comment.