summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAlexey Kulakov <panda75@bk.ru>2014-07-14 12:20:57 +0000
committerAlexey Kulakov <panda75@bk.ru>2014-07-14 12:20:57 +0000
commitca5a8922da1fe6e9de0f24e669c9321d5afa622a (patch)
treeff40cfdec23e3a343f0321c4876918f86e5d04f5 /plugins
parent1bd1854de9f0b43af59ad3502b7317b946e338ef (diff)
QuickSearch: inversion of column sort direction icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@9792 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/QuickSearch/sr_window.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/QuickSearch/sr_window.pas b/plugins/QuickSearch/sr_window.pas
index 1aa5a6f708..6580d79938 100644
--- a/plugins/QuickSearch/sr_window.pas
+++ b/plugins/QuickSearch/sr_window.pas
@@ -975,7 +975,7 @@ begin
// set new sort mark
SendMessage(header,HDM_GETITEM,qsopt.columnsort,lparam(@hdi));
- if (qsopt.flags and QSO_SORTASC)<>0 then
+ if (qsopt.flags and QSO_SORTASC)=0 then
hdi.fmt:=hdi.fmt or HDF_SORTDOWN
else
hdi.fmt:=hdi.fmt or HDF_SORTUP;