From 808b7b0cf9dac3f8dcef8778e25fef00ec039344 Mon Sep 17 00:00:00 2001 From: klugier Date: Sat, 22 Nov 2025 15:24:28 +0100 Subject: [PATCH] Ide: fixed issue with too many separators in tool bar after adding option for finding DDUMPS. --- uppsrc/ide/idebar.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/uppsrc/ide/idebar.cpp b/uppsrc/ide/idebar.cpp index f77be9204..bd111d48c 100644 --- a/uppsrc/ide/idebar.cpp +++ b/uppsrc/ide/idebar.cpp @@ -245,7 +245,8 @@ void Ide::SearchMenu(Bar& menu) .Help("Find text or text pattern in subtree of given path, with replace option(s)"); menu.Add(AK_FINDFILE, THISBACK(FindFileName)) .Help("Locate file by filename (use *, ? when you're not sure)"); - FindDs(menu); + if(menu.IsMenuBar()) + FindDs(menu); } void Ide::Edit(Bar& menu)