Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gtk_widget_set_margin_end too new as reported in #commitcomment-7689638 #318

Merged
merged 1 commit into from
Sep 7, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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