-
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed an issue with paths in the main file
Paths in the main file relative to itself would be relative to the exe when built not the file itself.
- Loading branch information
1 parent
994a646
commit d8761b4
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import wx | ||
from amulet_map_editor.amulet_ui import AmuletMainWindow | ||
from amulet_map_editor import config | ||
|
||
if __name__ == "__main__": | ||
app = wx.App() | ||
frame = AmuletMainWindow(None) | ||
app.MainLoop() | ||
config.save() |