IDE: Fix saving PathMode in SearchResultsView always. Issue #40352.

(cherry picked from commit bf0878f8f9)
This commit is contained in:
Juha 2023-06-28 13:00:54 +03:00 committed by Maxim Ganetsky
parent 8fb16eecfa
commit 4e98e33511

View File

@ -407,9 +407,9 @@ begin
// load path style
//mniPathRelative.Checked := true; // default
case EnvironmentGuiOpts.SearchResultViewPathStyle of
mwfsShort : mniPathAbsolute.Checked := true;
mwfsShort : mniPathFileName.Checked := true;
mwfsRelative: mniPathRelative.Checked := true;
mwfsFull : mniPathFileName.Checked := true;
mwfsFull : mniPathAbsolute.Checked := true;
end;
mniShowPathClick(Sender);
end;