Skip to content

Commit

Permalink
Fix UI check for output file
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqwsx committed Jun 21, 2024
1 parent 151b0d6 commit c02d062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kikit/actionPlugins/panelize.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def OnPanelize(self, event):
dlg.Destroy()
return
panelFile = self.sections["Output"].items["Output file"].getValue()
if len(input) == 0:
if len(panelFile) == 0:
dlg = wx.MessageDialog(
None, f"No output file specified", "Error", wx.OK)
dlg.ShowModal()
Expand Down

0 comments on commit c02d062

Please sign in to comment.