Browse Source

fix the size of the description and message field for the user detail window. see #125

Natenom/support-murmur-13-1446181288462
Michael Ziegler 14 years ago
parent
commit
290971bdb3
  1. 4
      pyweb/mumble/media/js/channelviewerplugins.js

4
pyweb/mumble/media/js/channelviewerplugins.js

@ -22,6 +22,7 @@ Ext.ux.MumbleUserEditor = Ext.extend( Ext.Component, {
xtype: "form", xtype: "form",
border: false, border: false,
title: gettext("User comment"), title: gettext("User comment"),
layout: 'fit',
items: [{ items: [{
xtype: "htmleditor", xtype: "htmleditor",
fieldLabel: 'x', fieldLabel: 'x',
@ -161,7 +162,7 @@ Ext.ux.MumbleUserEditor = Ext.extend( Ext.Component, {
xtype: "form", xtype: "form",
border: false, border: false,
title: gettext("Send message"), title: gettext("Send message"),
defaults: { "anchor": "-20px" },
layout: 'fit',
items: [{ items: [{
xtype: "htmleditor", xtype: "htmleditor",
fieldLabel: 'x', fieldLabel: 'x',
@ -190,6 +191,7 @@ Ext.ux.MumbleUserEditor = Ext.extend( Ext.Component, {
title: this.windowTitle || gettext("User details"), title: this.windowTitle || gettext("User details"),
layout: 'fit', layout: 'fit',
items: { items: {
viewConfig: { forceFit: true },
xtype: "tabpanel", xtype: "tabpanel",
activeTab: 0, activeTab: 0,
border: false, border: false,

Loading…
Cancel
Save