1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-17 11:30:09 +00:00

fixed linewidth step in patterns

This commit is contained in:
Zeno Rogue 2020-04-29 15:18:43 +02:00
parent 8ddb67b285
commit d0ac2612d5

View File

@ -2888,7 +2888,7 @@ EX namespace linepatterns {
dialog::addSelItem("line width", fts(width), 'W');
dialog::add_action([] () {
dialog::editNumber(width, 0, 10, 1, 1, XLAT("line width"), "");
dialog::editNumber(width, 0, 10, 0.1, 1, XLAT("line width"), "");
});
dialog::addBoolItem_action("edit widths individually", indiv, 'I');