Hey,
just wanted to let you know, that the minimap in the ressource scanner is not shown with the correct zoom on interface scale 75%.
Edit: I was trying to use a big area like 512x512, I expected it to fit fully and on 100% ui scale it does!
Edit2: I figured out how to help myself!
Inside the mod in file lualib/scanner-gui.lua, there is a line like:
minimap.zoom = 256 / largest
Change it to this, when playing on 75% ui scale:
minimap.zoom = 256 / largest * 0.75
Though I don't know how to fetch that value from the settings, I'm not a modder, I just write code as a living :)