From 5ab11922b90bac012b9923523f8bb3b5c4afd590 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Sun, 25 May 2025 21:46:19 +0500 Subject: [PATCH] Select "Added Files" tab after dragging and dropping files. Ensure the "Added Files" tab is automatically selected after users drag and drop files for conversion. This improves user experience by guiding them to the newly added content. --- convertor/view/conversion.go | 1 + 1 file changed, 1 insertion(+) diff --git a/convertor/view/conversion.go b/convertor/view/conversion.go index 546f273..947a37c 100644 --- a/convertor/view/conversion.go +++ b/convertor/view/conversion.go @@ -279,6 +279,7 @@ func newFileForConversion(app kernel.AppContract, itemsToConvertService kernel.I listableURI := storage.NewFileURI(filepath.Dir(uri.Path())) locationURI, _ = storage.ListerForURI(listableURI) } + app.GetWindow().GetLayout().GetRightTabs().SelectAddedFilesTab() if isError { fileForConversion.message.Text = app.GetLocalizerService().GetMessage(&i18n.LocalizeConfig{ MessageID: "errorDragAndDropFile",