forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Object creator can make itemgroups (CleverRaven#58750)
* Basic functionality * Refactor, styling * refactoring, item name i tooltip * Lose a column in the entries box By setting a background color we can do without the GI column * Add listwidget_drag * Add entrieslist and distributioncollection classes They are used in new commits down the line * Adjust main menu to accomodate the new item group button. * You can now drag and drop items into the lsit But in this commit the json isn't properlty updated so it needs to be added back in later. * Can now write basic nested json * Re-did the layout for the entries box * More layout * Did most of the layout * Solved a drag and drop issue, all properties update json now * Formatting * Prevent useless json, add tooltips
- Loading branch information
Showing
6 changed files
with
907 additions
and
6 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 |
---|---|---|
|
@@ -16,6 +16,7 @@ class main_window | |
|
||
enum class jsobj_type { | ||
SPELL, | ||
item_group, | ||
LAST | ||
}; | ||
} | ||
|
Oops, something went wrong.