PATCH: Misc GUI fixes



Hi,

 here we go again:

Fixes:
- wrong wmclass for save-as dialog in message window caused the save-as
  dialog to be the same size as the application main window when
  set to remember the main window size
- drag handle in compose window allows entry boxes to be squashed,
  when attachments are later added the display gets corrupted and sometimes
  cannot be readjusted by dragging

Requires:
- balsa CVS source tree

Conflicts:
- none

Melanie
diff -b -B -r -u -P --exclude-from=ignore ../balsa-cvs/src/balsa-message.c ./src/balsa-message.c
--- ../balsa-cvs/src/balsa-message.c	Sat Jul 14 14:59:02 2001
+++ ./src/balsa-message.c	Sat Jul 14 17:05:34 2001
@@ -349,7 +349,7 @@
 
     save_dialog = 
 	GTK_FILE_SELECTION(gtk_file_selection_new(_("Save MIME Part")));
-    // gtk_window_set_wmclass(GTK_WINDOW(save_dialog), "save", "Balsa");
+    gtk_window_set_wmclass(GTK_WINDOW(save_dialog), "save_part", "Balsa");
 
     if (balsa_app.save_dir)
 	filename = g_strdup_printf("%s/%s", balsa_app.save_dir,
diff -b -B -r -u -P --exclude-from=ignore ../balsa-cvs/src/sendmsg-window.c ./src/sendmsg-window.c
--- ../balsa-cvs/src/sendmsg-window.c	Sat Jul 14 17:53:09 2001
+++ ./src/sendmsg-window.c	Sat Jul 14 17:51:14 2001
@@ -801,8 +801,6 @@
 	g_free(balsa_app.attach_dir);
 
     balsa_app.attach_dir = dir;	/* steal the reference to the string */
-
-    /* FIXME: show attachment list */
 }
 
 /* attach_clicked - menu and toolbar callback */
@@ -1416,6 +1414,8 @@
     GList *list;
     gchar* tmp;
     gint i;
+
+	gtk_paned_set_handle_size(GTK_PANED(paned), 0);
 
     msg = g_malloc(sizeof(BalsaSendmsg));
     msg->font     = NULL;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]