Stupid fonts
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 36 KiB |
@@ -1,22 +1,22 @@
|
||||
{
|
||||
com.badlogic.gdx.graphics.g2d.BitmapFont: {
|
||||
default-font: {
|
||||
file: mplus.fnt
|
||||
file: dejavu-sans.fnt
|
||||
},
|
||||
small-font: {
|
||||
file: mplus-small.fnt
|
||||
file: dejavu-sans-small.fnt
|
||||
},
|
||||
big-font: {
|
||||
file: mplus-big.fnt
|
||||
file: dejavu-sans-big.fnt
|
||||
},
|
||||
default-font-normal: {
|
||||
file: mplus.fnt
|
||||
file: dejavu-sans.fnt
|
||||
},
|
||||
small-font-normal: {
|
||||
file: mplus-small.fnt
|
||||
file: dejavu-sans-small.fnt
|
||||
},
|
||||
big-font-normal: {
|
||||
file: mplus-big.fnt
|
||||
file: dejavu-sans-big.fnt
|
||||
}
|
||||
},
|
||||
com.badlogic.gdx.graphics.Color: {
|
||||
|
||||
@@ -56,7 +56,7 @@ public class UICollapsibleBox extends VisWindow {
|
||||
// by default all collapsible panels are not visible
|
||||
setVisible(false);
|
||||
padTop(26);
|
||||
padLeft(10);
|
||||
padLeft(5);
|
||||
}
|
||||
|
||||
protected void createCollapsibleWidget(Table table) {
|
||||
|
||||
@@ -28,8 +28,6 @@ import games.rednblack.editor.HyperLap2DFacade;
|
||||
* Created by azakhary on 4/17/2015.
|
||||
*/
|
||||
public class UIResourcesBox extends UICollapsibleBox {
|
||||
|
||||
|
||||
private HyperLap2DFacade facade;
|
||||
|
||||
private VisTable contentTable;
|
||||
@@ -62,10 +60,9 @@ public class UIResourcesBox extends UICollapsibleBox {
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
contentTable.add(tabbedPane.getTable()).width(230).padTop(8);
|
||||
contentTable.add(tabbedPane.getTable()).expandX().fillX().growX().padTop(8);
|
||||
contentTable.row();
|
||||
contentTable.add(tabContent).expandX().width(222);
|
||||
contentTable.add(tabContent).expandX().width(230);
|
||||
contentTable.row();
|
||||
createCollapsibleWidget(contentTable);
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ public class UIAnimationsTab extends UIResourcesTab {
|
||||
|
||||
@Override
|
||||
public String getTabTitle() {
|
||||
return " Anims ";
|
||||
return " Anim ";
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ public class UIImagesTab extends UIResourcesTab {
|
||||
|
||||
@Override
|
||||
public String getTabTitle() {
|
||||
return " Images ";
|
||||
return " Image ";
|
||||
}
|
||||
|
||||
public void setThumbnailBoxes(Array<DraggableResource> draggableResources) {
|
||||
|
||||
@@ -40,7 +40,7 @@ public class UIParticleEffectsTab extends UIResourcesTab {
|
||||
|
||||
@Override
|
||||
public String getTabTitle() {
|
||||
return " Particles ";
|
||||
return " Particle ";
|
||||
}
|
||||
|
||||
|
||||
|
||||