mirror of
https://github.com/rgleichman/glance.git
synced 2024-11-22 23:28:34 +03:00
Add comment that z is unused and fix warning.
This commit is contained in:
parent
ed36330f5c
commit
f58cebe4cd
@ -45,6 +45,7 @@ data Element = Element
|
||||
{ _elPosition :: !(Double, Double) -- ^ (x, y) of top left corner
|
||||
, _elSize :: !(Double, Double) -- ^ (width, height)
|
||||
, _elZ :: Int -- ^ Depth. Higher values are drawn on top
|
||||
-- _elZ is currently ignored
|
||||
}
|
||||
|
||||
data AppState = AppState
|
||||
@ -253,7 +254,7 @@ startApp app = do
|
||||
findElementByPosition :: IntMap.IntMap Element -> (Double, Double) -> Maybe (Int)
|
||||
findElementByPosition elements (mouseX, mouseY) =
|
||||
let
|
||||
mouseInElement (elementId, Element{_elPosition, _elSize}) =
|
||||
mouseInElement (_elementId, Element{_elPosition, _elSize}) =
|
||||
let
|
||||
(x, y) = _elPosition
|
||||
(width, height) = _elSize
|
||||
|
Loading…
Reference in New Issue
Block a user