2007-11-22 [paul] 3.1.0cvs15
* src/prefs_common.c make "cmds_use_system_default" default to FALSE so as not to disrupt current settings * src/summaryview.c increase the size of the GdkRectangle, tooltips didn't show for me otherwise
This commit is contained in:
parent
b96432690e
commit
f53da022e7
5 changed files with 14 additions and 4 deletions
|
@ -1,3 +1,12 @@
|
|||
2007-11-22 [paul] 3.1.0cvs15
|
||||
|
||||
* src/prefs_common.c
|
||||
make "cmds_use_system_default" default to FALSE
|
||||
so as not to disrupt current settings
|
||||
* src/summaryview.c
|
||||
increase the size of the GdkRectangle, tooltips
|
||||
didn't show for me otherwise
|
||||
|
||||
2007-11-21 [colin] 3.1.0cvs14
|
||||
|
||||
* src/compose.c
|
||||
|
|
|
@ -3072,3 +3072,4 @@
|
|||
( cvs diff -u -r 1.1.2.10 -r 1.1.2.11 src/printing.c; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/printing.h; ) > 3.1.0cvs12.patchset
|
||||
( cvs diff -u -r 1.94.2.163 -r 1.94.2.164 src/messageview.c; cvs diff -u -r 1.49.2.102 -r 1.49.2.103 src/procmime.c; cvs diff -u -r 1.60.2.49 -r 1.60.2.50 src/procmsg.h; ) > 3.1.0cvs13.patchset
|
||||
( cvs diff -u -r 1.382.2.425 -r 1.382.2.426 src/compose.c; cvs diff -u -r 1.23.2.27 -r 1.23.2.28 src/crash.c; cvs diff -u -r 1.3.2.22 -r 1.3.2.23 src/exphtmldlg.c; cvs diff -u -r 1.274.2.221 -r 1.274.2.222 src/mainwindow.c; cvs diff -u -r 1.11.2.13 -r 1.11.2.14 src/manual.c; cvs diff -u -r 1.83.2.123 -r 1.83.2.124 src/mimeview.c; cvs diff -u -r 1.105.2.116 -r 1.105.2.117 src/prefs_account.c; cvs diff -u -r 1.204.2.152 -r 1.204.2.153 src/prefs_common.c; cvs diff -u -r 1.103.2.98 -r 1.103.2.99 src/prefs_common.h; cvs diff -u -r 1.3.2.18 -r 1.3.2.19 src/prefs_ext_prog.c; cvs diff -u -r 1.96.2.192 -r 1.96.2.193 src/textview.c; cvs diff -u -r 1.1.2.5 -r 1.1.2.6 src/uri_opener.c; cvs diff -u -r 1.4.2.56 -r 1.4.2.57 src/gtk/about.c; cvs diff -u -r 1.5.2.72 -r 1.5.2.73 src/gtk/gtkutils.c; ) > 3.1.0cvs14.patchset
|
||||
( cvs diff -u -r 1.204.2.153 -r 1.204.2.154 src/prefs_common.c; cvs diff -u -r 1.395.2.337 -r 1.395.2.338 src/summaryview.c; ) > 3.1.0cvs15.patchset
|
||||
|
|
|
@ -11,7 +11,7 @@ MINOR_VERSION=1
|
|||
MICRO_VERSION=0
|
||||
INTERFACE_AGE=0
|
||||
BINARY_AGE=0
|
||||
EXTRA_VERSION=14
|
||||
EXTRA_VERSION=15
|
||||
EXTRA_RELEASE=
|
||||
EXTRA_GTK2_VERSION=
|
||||
|
||||
|
|
|
@ -792,7 +792,7 @@ static PrefParam param[] = {
|
|||
&SPECIFIC_PREFS.print_cmd, P_STRING, NULL, NULL, NULL},
|
||||
{"ext_editor_command", DEFAULT_EDITOR_CMD,
|
||||
&SPECIFIC_PREFS.ext_editor_cmd, P_STRING, NULL, NULL, NULL},
|
||||
{"cmds_use_system_default", "TRUE",
|
||||
{"cmds_use_system_default", "FALSE",
|
||||
&prefs_common.cmds_use_system_default, P_BOOL, NULL, NULL, NULL},
|
||||
{"add_address_by_click", "FALSE", &prefs_common.add_address_by_click,
|
||||
P_BOOL, NULL, NULL, NULL},
|
||||
|
|
|
@ -5796,8 +5796,8 @@ static gboolean tooltip_cb (GtkWidget *widget,
|
|||
|
||||
rect.x = x - 2;
|
||||
rect.y = y - 2;
|
||||
rect.width = 4;
|
||||
rect.height= 4;
|
||||
rect.width = 12;
|
||||
rect.height= 12;
|
||||
gtk_tooltip_set_tip_area(tooltip, &rect);
|
||||
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue