Skip to content

Commit

Permalink
fixed a couple of small bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
E1Bos committed Jul 11, 2023
1 parent 979af7f commit e6604d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changelog

Date Format: YYYY-MM-DD

## Version 1.5.1 - 2023-07-11

### Fixed
- [Bug] Instalocker would select wrong agent when a new agent was unlocked. The coords were not recalculated.
- [Bug] Fixed padding on tools tab.

## Version 1.5.0 - 2023-07-08

### Added
Expand Down
3 changes: 2 additions & 1 deletion data/instalocker.py
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ def create_gui(self):
# region Settings Tab

scrolling_settings_frame = customtkinter.CTkScrollableFrame(self.settings_frame)
scrolling_settings_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
scrolling_settings_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=20)

# endregion

Expand Down Expand Up @@ -2074,6 +2074,7 @@ def toggle_unlocked_agent_status(self, agent_name):
"toggle_unlocked_agent_status", toggled_agent_name=agent_name
)
self.update_gui(from_agent_tab=True)
self.find_agent_coords(self.selected_agent)
self.save_current_data()

# Toggles the agent in the random agent tab
Expand Down

0 comments on commit e6604d3

Please sign in to comment.