set the default open size to something reasonable. For #43410.
2003-05-27 Not Zed <NotZed@Ximian.com> * message-tag-editor.c (message_tag_editor_init): set the default open size to something reasonable. For #43410. * mail-signature-editor.c (d): turn off debugging. * mail-config.c (mail_config_signature_add): save new signature in signature list. For #43688. svn path=/trunk/; revision=21340
This commit is contained in:
@ -1,3 +1,13 @@
|
|||||||
|
2003-05-27 Not Zed <NotZed@Ximian.com>
|
||||||
|
|
||||||
|
* message-tag-editor.c (message_tag_editor_init): set the default
|
||||||
|
open size to something reasonable. For #43410.
|
||||||
|
|
||||||
|
* mail-signature-editor.c (d): turn off debugging.
|
||||||
|
|
||||||
|
* mail-config.c (mail_config_signature_add): save new signature in
|
||||||
|
signature list. For #43688.
|
||||||
|
|
||||||
2003-05-21 Radek Doulik <rodo@ximian.com>
|
2003-05-21 Radek Doulik <rodo@ximian.com>
|
||||||
|
|
||||||
* mail-signature-editor.c (menu_file_save_cb): set signature html
|
* mail-signature-editor.c (menu_file_save_cb): set signature html
|
||||||
|
@ -1376,6 +1376,7 @@ mail_config_signature_add (MailConfigSignature *sig)
|
|||||||
g_assert (g_slist_find (config->signatures, sig) == NULL);
|
g_assert (g_slist_find (config->signatures, sig) == NULL);
|
||||||
|
|
||||||
config->signatures = g_slist_append (config->signatures, sig);
|
config->signatures = g_slist_append (config->signatures, sig);
|
||||||
|
config_write_signatures ();
|
||||||
mail_config_signature_emit_event (MAIL_CONFIG_SIG_EVENT_ADDED, sig);
|
mail_config_signature_emit_event (MAIL_CONFIG_SIG_EVENT_ADDED, sig);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
#include "mail-signature-editor.h"
|
#include "mail-signature-editor.h"
|
||||||
#include "mail-config.h"
|
#include "mail-config.h"
|
||||||
|
|
||||||
#define d(x) x
|
#define d(x)
|
||||||
|
|
||||||
|
|
||||||
struct _ESignatureEditor {
|
struct _ESignatureEditor {
|
||||||
|
@ -78,7 +78,7 @@ message_tag_editor_class_init (MessageTagEditorClass *klass)
|
|||||||
static void
|
static void
|
||||||
message_tag_editor_init (MessageTagEditor *editor)
|
message_tag_editor_init (MessageTagEditor *editor)
|
||||||
{
|
{
|
||||||
g_object_set (editor, "allow_shrink", FALSE, "allow_grow", TRUE, NULL);
|
gtk_window_set_default_size((GtkWindow *)editor, 400, 500);
|
||||||
gtk_dialog_add_buttons (GTK_DIALOG (editor),
|
gtk_dialog_add_buttons (GTK_DIALOG (editor),
|
||||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||||||
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
||||||
|
Reference in New Issue
Block a user