Fixes in rule violations and private chat

master
Eduardo Bart 11 years ago
parent dad3026ba0
commit 120c2b4231

@ -887,6 +887,7 @@ end
function onRuleViolationLock()
if not violationReportTab then return end
violationReportTab.locked = false
addTabText(tr('Your request has been closed') .. '.', SpeakTypesSettings.privateRed, violationReportTab)
violationReportTab.locked = true
end

@ -10,16 +10,17 @@ MainWindow
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
max-length: 255
TextEdit
id: text
text-wrap: true
multiline: true
anchors.top: prev.bottom
anchors.bottom: next.top
anchors.left: parent.left
anchors.right: parent.right
margin: 8 0
max-length: 255
Button
id: buttonOk

@ -187,8 +187,8 @@ function onVipListLabelMousePress(widget, mousePos, mouseButton)
if modules.game_console.getOwnPrivateTab() then
menu:addSeparator()
menu:addOption(tr('Invite to private chat'), function() g_game.inviteToOwnChannel(creatureName) end)
menu:addOption(tr('Exclude from private chat'), function() g_game.excludeFromOwnChannel(creatureName) end)
menu:addOption(tr('Invite to private chat'), function() g_game.inviteToOwnChannel(widget:getText()) end)
menu:addOption(tr('Exclude from private chat'), function() g_game.excludeFromOwnChannel(widget:getText()) end)
end
if not isHiddingOffline() then

Loading…
Cancel
Save