aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-12-22 07:08:21 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-12-22 07:08:21 +0000
commitd50acf718384a073e2171e30d0add85eba368d88 (patch)
tree8b714ba276f2f3fe73a1fcfdd3150ee068861dd8
parentd80a3b56dd4f6cf9a16510402b9122a75116b90c (diff)
modified window handling.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@853 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/mainwindow.c2
-rw-r--r--src/summary_search.c2
4 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 423c68e1..dcc4eb01 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-12-22
+ * src/summary_search.c
+ src/mainwindow.c: modified window handling.
+
+2005-12-22
+
* src/summaryview.[ch]
src/summary_search.c: select activated message in summary view if
possible.
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 9e51c7b7..3945d47a 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,10 @@
2005-12-22
+ * src/summary_search.c
+ src/mainwindow.c: ウィンドウ操作を修正。
+
+2005-12-22
+
* src/summaryview.[ch]
src/summary_search.c: 可能であれば指定したメッセージをサマリビュー
で選択するようにした。
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 0da3baa5..500e4640 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -2740,12 +2740,14 @@ static void import_mbox_cb(MainWindow *mainwin, guint action,
GtkWidget *widget)
{
import_mbox(mainwin->summaryview->folder_item);
+ main_window_popup(mainwin);
}
static void export_mbox_cb(MainWindow *mainwin, guint action,
GtkWidget *widget)
{
export_mbox(mainwin->summaryview->folder_item);
+ main_window_popup(mainwin);
}
static void empty_trash_cb(MainWindow *mainwin, guint action,
diff --git a/src/summary_search.c b/src/summary_search.c
index be16a2ce..f067e07c 100644
--- a/src/summary_search.c
+++ b/src/summary_search.c
@@ -175,7 +175,7 @@ void summary_search(FolderItem *item)
if (!search_window.window)
summary_search_create();
else
- gtk_widget_hide(search_window.window);
+ gtk_window_present(search_window.window);
if (item && item->stype != F_VIRTUAL) {
id = folder_item_get_identifier(item);