[Delta] Can't Click on Mapper In Geyser Container

Post Reply
jonhutch01
Posts: 6
Joined: Tue May 04, 2010 3:29 pm

[Delta] Can't Click on Mapper In Geyser Container

Post by jonhutch01 »

I apologize if this has been asked before, but my search though the forums and google turned up nothing related to this issue.

The short version is that when I create a Mapper container in Geyser, I can no longer double click rooms to move or even select the menu arrow at the bottom. Is this a known thing? Is there a work around for it? Here is the code I'm using (pulled almost entirely from Templet example):

GUI.BoxCSS = CSSMan.new([[
background-color: rgba(0,0,0,100);
border-style: solid;
border-width: 1px;
border-radius: 10px;
border-color: white;
margin: 10px;
]])


GUI.Box1 = Geyser.Label:new({
name = "GUI.Box1",
x = 0, y = 0,
width = "100%",
height = "50%",
},GUI.Right)

GUI.Map_Container = Geyser.Container:new({
name = "GUI.Map_Container",
x = 0, y = 0,
width = "100%",
height = "100%",
},GUI.Box1)

GUI.Mapper = Geyser.Mapper:new({
name = "GUI.Mapper",
x = 20, y = 20,
width = GUI.Map_Container:get_width()-40,
height = GUI.Map_Container:get_height()-40,
},GUI.Map_Container)

--the map's default background color is black, so lets blend it in...
GUI.Box1CSS = CSSMan.new(GUI.BoxCSS:getCSS())
GUI.Box1CSS:set("background-color", "black")
GUI.Box1:setStyleSheet(GUI.Box1CSS:getCSS())

User avatar
Vadi
Posts: 5035
Joined: Sat Mar 14, 2009 3:13 pm

Re: [Delta] Can't Click on Mapper In Geyser Container

Post by Vadi »

Known issue, can't have the Mapper above or below a Label, unfortunately: https://bugs.launchpad.net/mudlet/+bug/1327914

jonhutch01
Posts: 6
Joined: Tue May 04, 2010 3:29 pm

Re: [Delta] Can't Click on Mapper In Geyser Container

Post by jonhutch01 »

No worries! Just glad I wasn't​ missing something obvious. Thanks so much for the reply, and double thanks for the awesome client!

User avatar
Vadi
Posts: 5035
Joined: Sat Mar 14, 2009 3:13 pm

Re: [Delta] Can't Click on Mapper In Geyser Container

Post by Vadi »

Happy to help!

Post Reply