mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2026-07-26 18:36:23 +09:00
Style and locale fixes
This commit is contained in:
@@ -14,7 +14,7 @@ Commands.new("clear-inventory", { "exp-commands_clear-inventory.description" })
|
||||
:register(function(player, other_player)
|
||||
local inventory = other_player.get_main_inventory()
|
||||
if not inventory then
|
||||
return Commands.status.error{ "expcore-commands.reject-player-alive" }
|
||||
return Commands.status.error{ "exp-commands-parse.player-alive" }
|
||||
end
|
||||
|
||||
transfer_inventory{
|
||||
|
||||
@@ -71,12 +71,12 @@ Elements.close_action_bar = Gui.define("player_list/close_action_bar")
|
||||
tooltip = { "exp-gui_player-list.close-action-bar" },
|
||||
style = "slot_sized_button_red",
|
||||
}
|
||||
:style(Gui.styles.sprite{
|
||||
size = 20,
|
||||
:style{
|
||||
size = 30,
|
||||
padding = -1,
|
||||
top_margin = -1,
|
||||
right_margin = -1,
|
||||
})
|
||||
}
|
||||
:on_click(function(_, player)
|
||||
Elements.container.set_selected_player(player, nil)
|
||||
Elements.player_table.refresh_player(player)
|
||||
@@ -92,12 +92,12 @@ Elements.reason_confirm = Gui.define("player_list/reason_confirm")
|
||||
tooltip = { "exp-gui_player-list.reason-confirm" },
|
||||
style = "slot_sized_button_green",
|
||||
}
|
||||
:style(Gui.styles.sprite{
|
||||
:style{
|
||||
size = 30,
|
||||
padding = -1,
|
||||
left_margin = -2,
|
||||
right_margin = -1,
|
||||
})
|
||||
}
|
||||
:on_click(function(_, player, element)
|
||||
local action_name = Elements.container.get_selected_action(player)
|
||||
local button_data = action_name and config.buttons[action_name]
|
||||
@@ -382,7 +382,7 @@ Elements.reason_bar = Gui.define("player_list/reason_bar")
|
||||
local entry_style = reason_field.style
|
||||
entry_style.padding = 0
|
||||
entry_style.height = 28
|
||||
entry_style.minimal_width = 160
|
||||
entry_style.minimal_width = 158
|
||||
|
||||
Elements.reason_confirm(reason_bar)
|
||||
return reason_bar
|
||||
|
||||
Reference in New Issue
Block a user