Skip to content

Commit

Permalink
WC: Minor improvements to pickup dialog
Browse files Browse the repository at this point in the history
- Add some padding
- No need to say the key shortcuts
  • Loading branch information
CelticMinstrel committed Feb 20, 2021
1 parent 0cc39f9 commit 3efe297
Showing 1 changed file with 8 additions and 2 deletions.
Expand Up @@ -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
},
Expand Down

0 comments on commit 3efe297

Please sign in to comment.