This is a patch file for "zenity" 3.26.0. This patch changes the background color for most "zenity" dialogs from grey to white. This patch file may include trailing empty lines and/or trailing lines that consist solely of whitespace. If you edit this file, use software that preserves lines of this type, or you may break the patch. --- zenity-3.26.0.old/src/msg.c +++ zenity-3.26.0/src/msg.c @@ -148,6 +148,12 @@ return; } + if (dialog != NULL) + { + GdkColor color = { 0, 0xffff, 0xffff, 0xffff }; + gtk_widget_modify_bg (GTK_WIDGET (dialog), GTK_STATE_NORMAL, &color); + } + g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (zenity_msg_dialog_response), ===== end of patch =====