Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatenom <natenom@natenom.name>2013-10-01 02:19:47 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2013-10-15 01:55:06 +0400
commitf07f0c8643ef109131b6e863720bcf4e79b102fa (patch)
tree7d55f4a8a09c52bc7daf1ea6110e9335f4335d0b /src/mumble/ACLEditor.cpp
parentcde56107fb5447fc7342e907da9e8cc9ba36de46 (diff)
Show channelid to ACLEditor
Diffstat (limited to 'src/mumble/ACLEditor.cpp')
-rw-r--r--src/mumble/ACLEditor.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mumble/ACLEditor.cpp b/src/mumble/ACLEditor.cpp
index c938ffc15..e24abd5a9 100644
--- a/src/mumble/ACLEditor.cpp
+++ b/src/mumble/ACLEditor.cpp
@@ -63,6 +63,8 @@ ACLEditor::ACLEditor(int channelparentid, QWidget *p) : QDialog(p) {
qleChannelPassword->hide();
qlChannelPassword->hide();
+ qlChannelID->hide();
+
qleChannelName->setFocus();
pcaPassword = NULL;
@@ -91,6 +93,8 @@ ACLEditor::ACLEditor(int channelid, const MumbleProto::ACL &mea, QWidget *p) : Q
iId = mea.channel_id();
setWindowTitle(tr("Mumble - Edit %1").arg(Channel::get(iId)->qsName));
+ qlChannelID->setText(tr("ID: %1").arg(iId));
+
qleChannelName->setText(pChannel->qsName);
if (channelid == 0)
qleChannelName->setEnabled(false);