forked from mbk-lab/rui_orig
parent
89cd7104eb
commit
17ba035c09
|
@ -167,7 +167,19 @@ func ShowMenu(session Session, params Params) Popup {
|
||||||
Orientation: TopDownOrientation,
|
Orientation: TopDownOrientation,
|
||||||
ListItemClickedEvent: data.itemClick,
|
ListItemClickedEvent: data.itemClick,
|
||||||
})
|
})
|
||||||
data.popup = NewPopup(listView, params)
|
|
||||||
|
popupParams := Params{}
|
||||||
|
for tag, value := range params {
|
||||||
|
switch tag {
|
||||||
|
case Items, PopupMenuResult:
|
||||||
|
// do nothing
|
||||||
|
|
||||||
|
default:
|
||||||
|
popupParams[tag] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data.popup = NewPopup(listView, popupParams)
|
||||||
data.popup.Show()
|
data.popup.Show()
|
||||||
FocusView(listView)
|
FocusView(listView)
|
||||||
return data.popup
|
return data.popup
|
||||||
|
|
Loading…
Reference in New Issue