diff --git a/src/mumble/ACLEditor.cpp b/src/mumble/ACLEditor.cpp index f3ca263b3..d6f083d35 100644 --- a/src/mumble/ACLEditor.cpp +++ b/src/mumble/ACLEditor.cpp @@ -180,6 +180,9 @@ ACLEditor::ACLEditor(int channelid, const MumbleProto::ACL &mea, QWidget *p) : Q const MumbleProto::ACL_ChanGroup &gs = mea.groups(i); ACLGroup *gp = new ACLGroup(u8(gs.name())); + gp->bInherit = gs.inherit(); + gp->bInherited = gs.inherited(); + gp->bInheritable = gs.inheritable(); for (int j=0;jqsAdd.insert(gs.add(j)); for (int j=0;jset_name(u8(gp->qsName)); + mpg->set_inherit(gp->bInherit); + mpg->set_inheritable(gp->bInheritable); foreach(int pid, gp->qsAdd) if (pid >= 0) mpg->add_add(pid);