Fix position dialog.

This commit is contained in:
Paulo Gustavo Veiga
2011-03-23 00:50:30 -03:00
parent cbc31c56ef
commit 43ff313635
10 changed files with 18 additions and 11 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 655 B

View File

Before

Width:  |  Height:  |  Size: 696 B

After

Width:  |  Height:  |  Size: 696 B

View File

@@ -18,9 +18,9 @@
var IconPanel = new Class({
options:{
width:250,
width:253,
initialWidth:0,
height:250,
height:200,
content:null,
panel:null,
button:null,

View File

@@ -457,7 +457,7 @@ function afterMindpotLibraryLoading()
}
function buildIconChooser() {
var content = new Element('div').setStyles({width:250,height:250,padding:5});
var content = new Element('div').setStyles({width:253,height:200,padding:5});
var count = 0;
for (var i = 0; i < mindplot.ImageIcon.prototype.ICON_FAMILIES.length; i = i + 1)
{
@@ -466,7 +466,7 @@ function buildIconChooser() {
{
// Separate icons by line ...
var familyContent;
if ((count % 9) == 0)
if ((count % 12) == 0)
{
familyContent = new Element('div').inject(content);
}