[gnote] * Popup menus in the search dialog now appear.
- From: Hubert Figuière <hub src gnome org>
- To: svn-commits-list gnome org
- Subject: [gnote] * Popup menus in the search dialog now appear.
- Date: Mon, 4 May 2009 22:44:02 -0400 (EDT)
commit 71e2c9f197a10dfab03ec0a1b3b5a77d396b83ce
Author: Hubert Figuiere <hub figuiere net>
Date: Mon May 4 21:32:43 2009 -0400
* Popup menus in the search dialog now appear.
---
NEWS | 1 +
src/recentchanges.cpp | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/NEWS b/NEWS
index 3564ec1..d7f1e62 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,7 @@ Fixes:
* Help didn't work in the Note windows. (Closes #581200)
* Notebook addin toolbar button was inconsistent. (Closes #581213)
* Delete notebook now works in the search dialog. (Closes #581222)
+ * Popup menus in the search dialog now appear.
Translations:
diff --git a/src/recentchanges.cpp b/src/recentchanges.cpp
index e232375..ee35ad5 100644
--- a/src/recentchanges.cpp
+++ b/src/recentchanges.cpp
@@ -293,7 +293,7 @@ namespace gnote {
m_on_notebook_selection_changed_cid = m_notebooksTree->get_selection()->signal_changed()
.connect(sigc::mem_fun(*this, &NoteRecentChanges::on_notebook_selection_changed));
m_notebooksTree->signal_button_press_event()
- .connect(sigc::mem_fun(*this, &NoteRecentChanges::on_notebooks_tree_button_pressed));
+ .connect(sigc::mem_fun(*this, &NoteRecentChanges::on_notebooks_tree_button_pressed), false);
m_notebooksTree->signal_key_press_event()
.connect(sigc::mem_fun(*this, &NoteRecentChanges::on_notebooks_key_pressed));
@@ -330,9 +330,9 @@ namespace gnote {
m_tree->get_selection()->signal_changed().connect(
sigc::mem_fun(*this, &NoteRecentChanges::on_selection_changed));
m_tree->signal_button_press_event().connect(
- sigc::mem_fun(*this, &NoteRecentChanges::on_treeview_button_pressed));
+ sigc::mem_fun(*this, &NoteRecentChanges::on_treeview_button_pressed), false);
m_tree->signal_motion_notify_event().connect(
- sigc::mem_fun(*this, &NoteRecentChanges::on_treeview_motion_notify));
+ sigc::mem_fun(*this, &NoteRecentChanges::on_treeview_motion_notify), false);
m_tree->signal_button_release_event().connect(
sigc::mem_fun(*this, &NoteRecentChanges::on_treeview_button_released));
m_tree->signal_drag_data_get().connect(
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]