mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
(gtk) #869: Minor HIG fixes for Exit/Remove/Delete alerts
This commit is contained in:
parent
8146a0c7f7
commit
5d195e00f3
1 changed files with 4 additions and 4 deletions
|
@ -109,9 +109,9 @@ askquit( TrCore * core,
|
|||
|
||||
wind = gtk_message_dialog_new_with_markup( parent,
|
||||
GTK_DIALOG_DESTROY_WITH_PARENT,
|
||||
GTK_MESSAGE_QUESTION,
|
||||
GTK_MESSAGE_WARNING,
|
||||
GTK_BUTTONS_NONE,
|
||||
_("<b>Really Quit?</b>") );
|
||||
_("<big><b>Quit Transmission?</b></big>") );
|
||||
|
||||
gtk_dialog_add_buttons( GTK_DIALOG(wind),
|
||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||||
|
@ -227,9 +227,9 @@ confirmRemove( GtkWindow * parent,
|
|||
|
||||
d = gtk_message_dialog_new_with_markup( parent,
|
||||
GTK_DIALOG_DESTROY_WITH_PARENT,
|
||||
( delete_files ? GTK_MESSAGE_WARNING : GTK_MESSAGE_QUESTION ),
|
||||
GTK_MESSAGE_WARNING,
|
||||
GTK_BUTTONS_NONE,
|
||||
"<b>%s</b>", primary_text );
|
||||
"<big><b>%s</b></big>", primary_text );
|
||||
if( secondary_text )
|
||||
gtk_message_dialog_format_secondary_markup( GTK_MESSAGE_DIALOG( d ), secondary_text );
|
||||
gtk_dialog_add_buttons( GTK_DIALOG( d ),
|
||||
|
|
Loading…
Reference in a new issue