diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-25 20:04:13 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:39 +0100 |
commit | 08eed041748e9e64c175d09e8877f6d4afd0cfd6 (patch) | |
tree | c3fde157f856739e13db9c54b403997044383fa3 | |
parent | 2ffcab7b644e3c874f7c01f2f1d765c222db9a58 (diff) | |
download | nevsky-08eed041748e9e64c175d09e8877f6d4afd0cfd6.tar.gz |
Don't obscure legate by stacking order.
-rw-r--r-- | play.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -954,8 +954,10 @@ function layout_locale_cylinders(loc) { y -= 18 z = 2 } - if (e === ui.legate) + if (e === ui.legate) { y -= 16 + z = 3 + } e.style.top = (y - 23) + "px" e.style.left = (x - 23) + "px" e.style.zIndex = z |