mirror of
https://github.com/jorgevasquezp/wc_helper.git
synced 2026-08-16 15:31:02 +00:00
Removed some whitespace
This commit is contained in:
+8
-7
@@ -12,7 +12,6 @@
|
||||
TODO:
|
||||
- Get artist initials in Windows too.
|
||||
*/
|
||||
|
||||
(function wcHelperPanel (thisObj) {
|
||||
/* Build UI */
|
||||
function buildUI(thisObj) {
|
||||
@@ -36,18 +35,20 @@
|
||||
//****//
|
||||
|
||||
win.artistName.text = system.callSystem("whoami");
|
||||
|
||||
var myButtonGroup = win.add ("group");
|
||||
myButtonGroup.spacing = 4;
|
||||
myButtonGroup.margins = 0;
|
||||
myButtonGroup.margins = 4;
|
||||
myButtonGroup.orientation = "row";
|
||||
win.checkbox1 = myButtonGroup.add( "checkbox", undefined, "Dupli:")
|
||||
win.checkbox1.value = true;
|
||||
win.button1 = myButtonGroup.add ("button", undefined, firstButton);
|
||||
win.button2 = myButtonGroup.add ("button", undefined, secondButton);
|
||||
win.button3 = myButtonGroup.add ("button", undefined, thirdButton);
|
||||
win.button4 = myButtonGroup.add ("button", undefined, fourthButton);
|
||||
myButtonGroup.alignment = "center";
|
||||
myButtonGroup.alignChildren = "center";
|
||||
var myButtonGroup2 = win.add ("group");
|
||||
win.button3 = myButtonGroup2.add ("button", undefined, thirdButton);
|
||||
win.button4 = myButtonGroup2.add ("button", undefined, fourthButton);
|
||||
myButtonGroup2.alignment = "center";
|
||||
myButtonGroup2.alignChildren = "center";
|
||||
|
||||
win.button1.onClick = function(){
|
||||
btnPlus1();
|
||||
@@ -68,7 +69,7 @@
|
||||
win.layout.layout(true);
|
||||
|
||||
return win
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Show the Panel
|
||||
|
||||
Reference in New Issue
Block a user