Spinner issues

I had to do small changes to get horizontal spinner to look as it should

--- src/tonegod/gui/controls/lists/Spinner.java	(revision 313)
+++ src/tonegod/gui/controls/lists/Spinner.java	(working copy)
@@ -159,7 +159,7 @@
 			btnIncY = 0;
 			btnIncH = getHeight();
 			btnIncIcon = screen.getStyle("Common").getString("arrowRight");
-			btnDecX = -getHeight();
+			btnDecX = -btnWidth;
 			btnDecY = 0;
 			btnDecH = getHeight();
 			btnDecIcon = screen.getStyle("Common").getString("arrowLeft");
@@ -195,7 +195,7 @@
 		};
 		btnInc.setButtonIcon(btnIncIconSize, btnIncIconSize, btnIncIcon);
 		btnInc.setDockS(true);
-		btnInc.setDockW(true);
+		btnInc.setDockE(true);
 		
 		addChild(btnInc);

Anyway, there seems to be no way to type/paste the number in. Is it planned at any point?

Scratch that - I had to remove both E and W docks to get it working embedded in window. Previous solution was good for free-floating spinners…

Anyway, something is not right with these buttons.