From c39e1c267deed0480ee360ba942fe881772891c1 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Tue, 24 Feb 2026 10:31:01 +0300 Subject: Enha: loaded model on top --- popups.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'popups.go') diff --git a/popups.go b/popups.go index 829a412..a1c3cd3 100644 --- a/popups.go +++ b/popups.go @@ -51,7 +51,7 @@ func showModelSelectionPopup() { // Find the current model index to set as selected currentModelIndex := -1 for i, model := range modelList { - if model == chatBody.Model { + if strings.TrimPrefix(model, "(loaded) ") == chatBody.Model { currentModelIndex = i } modelListWidget.AddItem(model, "", 0, nil) -- cgit v1.2.3