Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ factorio_mods
Instructions.png
Instructions2.png
cookiejar.txt
.vscode/settings.json
2 changes: 2 additions & 0 deletions locale/en/en.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ status-display=Show status display
trash-above-requested=Autotrash above requests
trash-unrequested=Autotrash unrequested items
trash-in-main-network=Autotrash only in main networks
config-button-apply=Apply changes
config-button-reset=Reset to previously saved state
tooltip-pause-trash=(__CONTROL__autotrash_pause__)
tooltip-pause-requests=(__CONTROL__autotrash_pause_requests__)
tooltip-rip=Load preset when respawning
Expand Down
4 changes: 2 additions & 2 deletions scripts/gui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1138,11 +1138,11 @@ function at_gui.create_main_window(player, pdata)
{type = "label", style = "subheader_caption_label", caption = {"at-gui.logistics-configuration"}},
gui_util.pushers.horizontal,
{type = "sprite-button", style = "item_and_count_select_confirm",
sprite = "utility/check_mark", tooltip = {"module-inserter-config-button-apply"},
sprite = "utility/check_mark", tooltip = {"at-gui.config-button-apply"},
actions = {on_click = {gui = "main", action = "apply_changes"}},
},
{type = "sprite-button", style = "tool_button_red", ref = {"main", "reset_button"}, sprite = "utility/reset",
actions = {on_click = {gui = "main", action = "reset"}},
tooltip = {"at-gui.config-button-reset"}, actions = {on_click = {gui = "main", action = "reset"}},
},
{type = "sprite-button", style = "tool_button", sprite = "utility/export_slot", tooltip = {"at-gui.tooltip-export"},
actions = {on_click = {gui = "main", action = "export"}}
Expand Down