summaryrefslogtreecommitdiff
path: root/plugins/NotesAndReminders/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-12-19 16:29:54 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-12-19 16:29:54 +0300
commitaea1ce24c17fc752cc54f3ac2737a87f196aa393 (patch)
tree9dbf62484aeec47e706e06aef154ba512228662c /plugins/NotesAndReminders/src
parent1d237e13ebd0a5e4e477091a496b655fc1348f30 (diff)
fixes #2152 (Notes & Reminders: no need to track mouse cursor)
Diffstat (limited to 'plugins/NotesAndReminders/src')
-rw-r--r--plugins/NotesAndReminders/src/notes.cpp2
-rw-r--r--plugins/NotesAndReminders/src/reminders.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NotesAndReminders/src/notes.cpp b/plugins/NotesAndReminders/src/notes.cpp
index 81061d729f..2b2e91b126 100644
--- a/plugins/NotesAndReminders/src/notes.cpp
+++ b/plugins/NotesAndReminders/src/notes.cpp
@@ -1419,7 +1419,7 @@ class CNotesListDlg : public CDlgBase
wchar_t *T = TranslateT("Top");
m_list.SetHoverTime(700);
- m_list.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES | LVS_EX_TRACKSELECT);
+ m_list.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES);
m_list.DeleteAllItems();
for (auto &pNote : g_arStickies) {
diff --git a/plugins/NotesAndReminders/src/reminders.cpp b/plugins/NotesAndReminders/src/reminders.cpp
index 79461a5848..faead58d54 100644
--- a/plugins/NotesAndReminders/src/reminders.cpp
+++ b/plugins/NotesAndReminders/src/reminders.cpp
@@ -1621,7 +1621,7 @@ public:
m_list.InsertColumn(1, &lvCol);
m_list.SetHoverTime(700);
- m_list.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES | LVS_EX_TRACKSELECT);
+ m_list.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES);
RefreshList();
SetWindowLongPtr(GetDlgItem(m_list.GetHwnd(), 0), GWL_ID, IDC_LISTREMINDERS_HEADER);