Skip to content

Commit

Permalink
audgui: Fix wrong layout in info popup
Browse files Browse the repository at this point in the history
There is one more row since commit 4a61c81.
  • Loading branch information
radioactiveman committed Nov 11, 2023
1 parent 9b78e85 commit ad663b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libaudgui/infopopup.cc
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ static GtkWidget * infopopup_create ()
#ifdef USE_GTK3
gtk_widget_set_margin_top (widgets.progress, 6);
gtk_progress_bar_set_show_text ((GtkProgressBar *) widgets.progress, true);
gtk_grid_attach ((GtkGrid *) grid, widgets.progress, 0, 7, 2, 1);
gtk_grid_attach ((GtkGrid *) grid, widgets.progress, 0, 8, 2, 1);
#else
gtk_table_set_row_spacing ((GtkTable *) grid, 6, 4);
gtk_table_set_row_spacing ((GtkTable *) grid, 7, 4);
gtk_table_attach ((GtkTable *) grid, widgets.progress, 0, 2, 7, 8,
GTK_FILL, GTK_FILL, 0, 0);

Expand Down

0 comments on commit ad663b7

Please sign in to comment.