WC: Minor improvements to pickup dialog
- Add some padding - No need to say the key shortcuts
This commit is contained in:
parent
0cc39f985d
commit
3efe2973e8
1 changed files with 8 additions and 2 deletions
|
@ -58,14 +58,20 @@ local function show_dialog(unit, item_image)
|
|||
T.row {
|
||||
T.column {
|
||||
T.button {
|
||||
label = _"Yes (enter)",
|
||||
border = "all",
|
||||
border_size = 5,
|
||||
horizontal_alignment = "right",
|
||||
label = _"Yes",
|
||||
id="res_yes",
|
||||
return_value = 1,
|
||||
},
|
||||
},
|
||||
T.column {
|
||||
border = "all",
|
||||
border_size = 5,
|
||||
horizontal_alignment = "right",
|
||||
T.button {
|
||||
label = _"No (esc)",
|
||||
label = _"No",
|
||||
id="res_no",
|
||||
return_value = 2
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue