Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ Template for new versions:
## New Features

## Fixes
- job descriptions of mix dye job will display proper dye names

## Misc Improvements

## Documentation

## API
- Added GUI focus strings for new_arena: ``/Loading`` and ``/Mods``

## Lua

## Removed

# 52.03-1
# 52.03-r1

## New Tools

Expand All @@ -83,6 +83,7 @@ Template for new versions:
## Documentation

## API
- Added GUI focus strings for new_arena: ``/Loading`` and ``/Mods``

## Lua

Expand Down
3 changes: 3 additions & 0 deletions library/modules/Job.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,9 @@ std::string Job::getName(df::job *job)
button->matgloss = job->mat_index;
button->specflag = job->specflag;
button->job_item_flag = job->material_category;
button->specdata = job->specdata;
button->art_specifier_id1 = job->art_spec.id;
button->art_specifier_id2 = job->art_spec.subid;

button->text(&desc);
delete button;
Expand Down
Loading