+2005-10-05 [paul] 1.9.15cvs13
+
+ * src/mainwindow.c
+ * src/mainwindow.h
+ fix disabled Execute menu item
+ * src/toolbar.c
+ match the change in 1.9.15cvs10: use Compose
+ instead of News by default
+
2005-10-04 [colin] 1.9.15cvs12
* src/compose.c
( cvs diff -u -r 1.43.2.26 -r 1.43.2.27 src/toolbar.c; ) > 1.9.15cvs10.patchset
( cvs diff -u -r 1.14.2.23 -r 1.14.2.24 src/plugins/trayicon/trayicon.c; ) > 1.9.15cvs11.patchset
( cvs diff -u -r 1.382.2.178 -r 1.382.2.179 src/compose.c; ) > 1.9.15cvs12.patchset
+( cvs diff -u -r 1.274.2.68 -r 1.274.2.69 src/mainwindow.c; cvs diff -u -r 1.39.2.8 -r 1.39.2.9 src/mainwindow.h; cvs diff -u -r 1.43.2.27 -r 1.43.2.28 src/toolbar.c; ) > 1.9.15cvs13.patchset
MICRO_VERSION=15
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=12
+EXTRA_VERSION=13
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
if (inc_is_active())
state |= M_INC_ACTIVE;
- if (mainwin->summaryview->deleted > 0)
- state |= M_DELAYED_FLAGS;
+ if (mainwin->summaryview->deleted > 0 ||
+ mainwin->summaryview->moved > 0 ||
+ mainwin->summaryview->copied > 0)
+ state |= M_DELAY_EXEC;
return state;
}
{"/Tools/Create filter rule" , M_SINGLE_TARGET_EXIST|M_UNLOCKED},
{"/Tools/Actions" , M_TARGET_EXIST|M_UNLOCKED},
{"/Tools/Execute" , M_DELAY_EXEC},
- {"/Tools/Execute" , M_DELAYED_FLAGS},
{"/Tools/Delete duplicated messages/In selected folder" , M_MSG_EXIST|M_ALLOW_DELETE|M_UNLOCKED},
{"/Configuration", M_UNLOCKED},
M_HAVE_NEWS_ACCOUNT = 1 << 12,
M_HIDE_READ_MSG = 1 << 13,
M_DELAY_EXEC = 1 << 14,
- M_NOT_NEWS = 1 << 15,
- M_DELAYED_FLAGS = 1 << 16
+ M_NOT_NEWS = 1 << 15
} SensitiveCond;
typedef enum
case A_COMPOSE_EMAIL:
icon_news = stock_pixmap_widget(container, STOCK_PIXMAP_NEWS_COMPOSE);
item_news = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
- _("News"),
+ _("Compose"),
(""),
(""),
icon_news, G_CALLBACK(toolbar_buttons_cb),