diff --git a/data/dfhack-config/quickfort/quickfort.txt b/data/dfhack-config/quickfort/quickfort.txt index e3f5aeaec..92af2909e 100644 --- a/data/dfhack-config/quickfort/quickfort.txt +++ b/data/dfhack-config/quickfort/quickfort.txt @@ -4,8 +4,8 @@ # temporarily overridden in the active session with the `quickfort set` command. # # If you have edited this file but want to revert to "factory defaults", delete -# this file and a fresh one will be copied from -# dfhack-config/default/quickfort/quickfort.txt the next time you start DFHack. +# this file and a default one will be regenerated for you the next time you +# start DFHack. # Directory tree to search for blueprints. Can be set to an absolute or relative # path. If set to a relative path, resolves to a directory under the DF folder. @@ -30,8 +30,8 @@ query_unsafe=false # Set to the maximum number of resources you want assigned to stockpiles of the # relevant types. Set to -1 for DF defaults (number of stockpile tiles for # stockpiles that take barrels and bins, 1 wheelbarrow for stone stockpiles). -# The default here for wheelbarrows is 0 since using wheelbarrows normally -# *decreases* the efficiency of your fort. +# The default here for wheelbarrows is 0 since restricting stockpiles to a +# single wheelbarrow can drastically *decrease* the efficiency of your fort. stockpiles_max_barrels=-1 stockpiles_max_bins=-1 stockpiles_max_wheelbarrows=0 diff --git a/library/lua/gui/dialogs.lua b/library/lua/gui/dialogs.lua index e7228db1e..0b923e7c0 100644 --- a/library/lua/gui/dialogs.lua +++ b/library/lua/gui/dialogs.lua @@ -218,9 +218,9 @@ end function ListBox:onRenderFrame(dc,rect) ListBox.super.onRenderFrame(self,dc,rect) - if self.select2_hint then - dc:seek(rect.x1+2,rect.y2):key('SEC_SELECT'):string(': '..self.select2_hint,COLOR_GREY) - end + --if self.select2_hint then + -- dc:seek(rect.x1+2,rect.y2):key('SEC_SELECT'):string(': '..self.select2_hint,COLOR_GREY) + --end end function ListBox:getWantedFrameSize()