diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-28 03:20:27 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-28 03:20:27 +0200 |
commit | 392ad3284d9e686ee49b51565490d665ca7e4284 (patch) | |
tree | 11ee393eb179cbd62b77c29936d1983e53ec7982 /include | |
parent | 6cab3bad114fd0806fd1d3feb562a53138c91708 (diff) |
front: More visual tweaks and tuneups
- Time in oplog is now localtime and properly padded (00:10, not 0:10)
- Health map instead of combo/aggregated
- Tweak the menu slightly
- Rotate and resize the random switch in guess_placement
Diffstat (limited to 'include')
-rw-r--r-- | include/nms/util.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/nms/util.pm b/include/nms/util.pm index b71d5a2..4e61082 100644 --- a/include/nms/util.pm +++ b/include/nms/util.pm @@ -103,8 +103,8 @@ sub guess_placement_dx { $src = "random"; $x = int(rand(1900)); $y = int(rand(900)); - $xx = $x + 20; - $yy = $y + 130; + $xx = $x + 230; + $yy = $y + 40; }; |