Skip to content

Commit

Permalink
add log entry
Browse files Browse the repository at this point in the history
  • Loading branch information
emcek committed Oct 27, 2023
1 parent 75afd94 commit 1af6fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcspy/qt_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def _load_table_gkeys(self) -> None:
self.tw_gkeys.setVerticalHeaderLabels([f'G{i}' for i in range(1, self.keyboard.gkeys + 1)])
self.tw_gkeys.setHorizontalHeaderLabels([f'M{i}' for i in range(1, self.keyboard.modes + 1)])
plane_gkeys = load_yaml(full_path=default_yaml.parent / f'{self.current_plane}.yaml')
LOG.debug(f'Load G-Keys for: {self.current_plane}')
LOG.debug(f'Load {self.current_plane}:\n{pformat(plane_gkeys)}')
self.input_reqs[self.current_plane] = GuiPlaneInputRequest.from_plane_gkeys(plane_gkeys=plane_gkeys)

for row in range(0, self.keyboard.gkeys):
Expand Down

0 comments on commit 1af6fb5

Please sign in to comment.