diff options
| author | Jeff Carr <[email protected]> | 2025-09-03 01:19:37 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-03 01:19:37 -0500 |
| commit | f5b513fa05ddbaaa2149cf0527ae1206e653266b (patch) | |
| tree | 5e3776433b90c16e6cf30acb4468af712c5712da /windowChats.go | |
| parent | 785591ab4cb3026ff069271b6f322a2e6f13eec8 (diff) | |
buttons for different stuffv0.0.6
Diffstat (limited to 'windowChats.go')
| -rw-r--r-- | windowChats.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/windowChats.go b/windowChats.go index 67153a3..dfd785d 100644 --- a/windowChats.go +++ b/windowChats.go @@ -37,6 +37,7 @@ func makeChatsWindow() *gadgets.GenericWindow { insertWin := gadgets.NewGenericWindow("regex Chats", "Display Chats") insertWin.Win.Custom = func() { log.Info("test delete window here") + insertWin.Hide() } grid := insertWin.Group.RawGrid() @@ -142,6 +143,7 @@ func makeBooksTable(chat *chatpb.Chat) *chatpb.Books { var pb *chatpb.Books pb = chatpb.NewBooks() + pb.TitleUuid = chat.Uuid for _, entry := range chat.GetEntries() { if entry.GeminiRequest == nil { @@ -155,5 +157,6 @@ func makeBooksTable(chat *chatpb.Chat) *chatpb.Books { newb.GeminiRequest = entry.GeminiRequest pb.Append(newb) } + pb.ConfigSave() return pb } |
