We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6cf9ee commit 86794d1Copy full SHA for 86794d1
2 files changed
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## Version 1.0.1
2
+### DEBUGGED
3
+* Fix failure to view command for newly created collections.
4
+
5
## Version 1.0.0
6
### ADDED
7
* Add GitHub action for Linux build.
cmdcompass/gui/main_window.py
@@ -285,6 +285,7 @@ def on_add_collection_click(self):
285
new_collection = Collection(name=collection_name, commands=[])
286
# Add the collection using the DataManager
287
self.data_manager.add_collection(new_collection)
288
+ self.collections = self.data_manager.get_collections()
289
# Update the collection dropdown
290
self.collection_dropdown.configure(values=[c.name for c in self.data_manager.get_collections()])
291
self.collection_dropdown.set(collection_name)
0 commit comments