mirror of
https://github.com/transmission/transmission
synced 2025-02-21 13:46:52 +00:00
(trunk gtk) #2972 "The "Torrent Options" dialog's Torrent Priority row gets too much vertical stretch" -- fixed in trunk for 1.92
This commit is contained in:
parent
a1e4c093f4
commit
fb6708858b
1 changed files with 2 additions and 2 deletions
|
@ -359,9 +359,9 @@ addSingleTorrentDialog( GtkWindow * parent, TrCore * core, tr_ctor * ctor )
|
|||
col = 0;
|
||||
w = gtk_label_new_with_mnemonic( _( "Torrent _priority:" ) );
|
||||
gtk_misc_set_alignment( GTK_MISC( w ), 0.0f, 0.5f );
|
||||
gtk_table_attach_defaults( GTK_TABLE( t ), w, col, col + 1, row, row + 1 );
|
||||
gtk_table_attach( GTK_TABLE( t ), w, col, col + 1, row, row + 1, ~0, 0, 0, 0 );
|
||||
++col;
|
||||
gtk_table_attach_defaults( GTK_TABLE( t ), data->priority_combo, col, col + 1, row, row + 1 );
|
||||
gtk_table_attach( GTK_TABLE( t ), data->priority_combo, col, col + 1, row, row + 1, ~0, 0, 0, 0 );
|
||||
gtk_label_set_mnemonic_widget( GTK_LABEL( w ), data->priority_combo );
|
||||
|
||||
++row;
|
||||
|
|
Loading…
Reference in a new issue