From 666f228027e24a616cf17deb88b708d949c3530c Mon Sep 17 00:00:00 2001 From: Scott Sumner <30118311+sasumner@users.noreply.github.com> Date: Tue, 4 May 2021 15:58:54 -0400 Subject: [PATCH] Fix function List button tool tips mixed up issue Swap errant tooltip text for function list sort and reload buttons. Fix #9804, close #9829 --- PowerEditor/src/WinControls/FunctionList/functionListPanel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PowerEditor/src/WinControls/FunctionList/functionListPanel.h b/PowerEditor/src/WinControls/FunctionList/functionListPanel.h index 3a091c102..849ebd35e 100644 --- a/PowerEditor/src/WinControls/FunctionList/functionListPanel.h +++ b/PowerEditor/src/WinControls/FunctionList/functionListPanel.h @@ -113,8 +113,8 @@ private: long _findEndLine = -1; HTREEITEM _findItem; - generic_string _sortTipStr = TEXT("Reload"); - generic_string _reloadTipStr = TEXT("Sort"); + generic_string _sortTipStr = TEXT("Sort"); + generic_string _reloadTipStr = TEXT("Reload"); std::vector _foundFuncInfos;