It is currently April 27th, 2024, 5:48 am

[Illustro - Disks] Consistent measures with curious display

Get help with creating, editing & fixing problems with skins
MoMotte
Posts: 2
Joined: March 26th, 2011, 5:09 pm

[Illustro - Disks] Consistent measures with curious display

Post by MoMotte »

Hi there,

I'm fairly new to Rainmeter but i have a little "bug" annoying me.
I use the "2disks" skin from Illustro theme. It's working fine "as-is" but since i want to monitor 8 disks, i had to edit it a little.
Instructions inside the skin file are quite straightforward and i've been able to configure it quickly, the only thing is that the progress bars in the skin are not always consistent.

Better than a long description, let's have a look at the thing directly :


As you can see, the measures are right. The figures in the rainmeter skin are correct but i don't understand why some progress bar are wrong ?
It's really obvious on disk G: since, the bar shows it's half full even if it's actually 5% full only. Regarding disk K:, there's also a glitch somewhere. Disk is shown as 100% full instead of 50%. L: is meant for removable devices, that's why readings are 0GB/0GB.

Here's the config file, maybe someone will spot something out

Code: Select all

; Lines starting ; (semicolons) are commented out.
; That is, they do not affect the code and are here for demonstration purposes only.
; ----------------------------------

; HOWTO: Adding more disks
; ----------------------------------
; Adding more disks is a pretty straightforward process. Follow the following steps to turn
; this 2 disks skin into a 3 disks skin. You can then extend it even further as you wish.
;
; 1) Create a new variable called disk3=X: directly below disk2=D: in the [Variables] section
; 2) Create a copy of the [measureTotalDisk2] and [measureUsedDisk2] sections
; 3) Rename the copied sections to [measureTotalDisk3] and [measureUsedDisk3], respectively.
;    Also change Drive=#disk2# to Drive=#disk3#
; 4) Now find the [meterBackground] section and change 2Line.png to 3Line.png in ImageName
; 5) Create a copy of the [meterLabelDisk2], [meterValueDisk2], and [meterBarDisk3].
;    Rename all Disk2's in the copied sections to Disk3.
; 6) Now we need to change the Y= values to adjust height. Change Y= under [meterLabelDisk2]
;    to Y=80 (calculated by adding 20 to the Y= value of previous meterLabel).
;    Then change Y= under [meterBarDisk3] to Y=92 (calculated by adding 20 to the Y= value of previous meterBar).
; 7) Save the file as '3 Disks.ini'. Now right-click on the Rainmeter tray icon and select
;    'Refresh All'. Now go activate the '3 Disks.ini' skin and enjoy! :)

[Rainmeter]
; This section contains general settings that can be used to change how Rainmeter behaves.
Author=poiru
AppVersion=1003000
Update=1000

[Metadata]
; Contains basic information of the skin.
Name=Disks
Description=Displays the usage of your disks.
License=Creative Commons BY-NC-SA 3.0
Version=1.0.0

[Variables]
; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).
fontName=Trebuchet MS
textSize=8
colorBar=235,170,0,255
colorText=255,255,255,205
disk1=C:
disk2=D:
disk3=E:
disk4=F:
disk5=G:
disk6=I:
disk7=K:
disk8=L:

; ----------------------------------
; MEASURES return some kind of value
; ----------------------------------

[measureTotalDisk1]
; This measure returns the total disk space
Measure=FreeDiskSpace
Drive=#disk1#
Total=1
UpdateDivider=120

[measureUsedDisk1]
; Returns inverted value of free disk space (i.e. used disk space)
Measure=FreeDiskSpace
Drive=#disk1#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
Total=1
UpdateDivider=120

[measureUsedDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
Total=1
UpdateDivider=120

[measureUsedDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
Total=1
UpdateDivider=120

[measureUsedDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk5]
Measure=FreeDiskSpace
Drive=#disk5#
Total=1
UpdateDivider=120

[measureUsedDisk5]
Measure=FreeDiskSpace
Drive=#disk5#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk6]
Measure=FreeDiskSpace
Drive=#disk6#
Total=1
UpdateDivider=120

[measureUsedDisk6]
Measure=FreeDiskSpace
Drive=#disk6#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk7]
Measure=FreeDiskSpace
Drive=#disk7#
Total=1
UpdateDivider=10

[measureUsedDisk7]
Measure=FreeDiskSpace
Drive=#disk7#
InvertMeasure=1
UpdateDivider=10

[measureTotalDisk8]
Measure=FreeDiskSpace
IgnoreRemovable=0
Drive=#disk8#
Total=1
UpdateDivider=10

[measureUsedDisk8]
Measure=FreeDiskSpace
IgnoreRemovable=0
Drive=#disk8#
InvertMeasure=1
UpdateDivider=10

; ----------------------------------
; STYLES are used to "centralize" options
; ----------------------------------

[styleTitle]
StringAlign=CENTER
StringCase=UPPER
StringStyle=BOLD
StringEffect=SHADOW
FontEffectColor=0,0,0,50
FontColor=#colorText#
FontFace=#fontName#
FontSize=10
AntiAlias=1
ClipString=1

[styleLeftText]
StringAlign=LEFT
; Meters using styleLeftText will be left-aligned.
StringCase=NONE
StringStyle=BOLD
StringEffect=SHADOW
FontEffectColor=0,0,0,20
FontColor=#colorText#
FontFace=#fontName#
FontSize=#textSize#
AntiAlias=1
ClipString=1

[styleRightText]
StringAlign=RIGHT
StringCase=NONE
StringStyle=BOLD
StringEffect=SHADOW
FontEffectColor=0,0,0,20
FontColor=#colorText#
FontFace=#fontName#
FontSize=#textSize#
AntiAlias=1
ClipString=1

[styleBar]
BarColor=#colorBar#
BarOrientation=HORIZONTAL
SolidColor=255,255,255,15

; ----------------------------------
; METERS display images, text, bars, etc.
; ----------------------------------

[meterBackground]
Meter=IMAGE
ImageName=#SKINSPATH#\illustro\SHARED\Background8Line.png
; #SKINSPATH# is a global variable that stands for your skin path. It is
; usually Documents\Rainmeter\Skins.
X=0
Y=0

[meterTitle]
Meter=STRING
MeterStyle=styleTitle
; Using MeterStyle=styleTitle will basically "copy" the
; contents of the [styleTitle] section here during runtime.
X=100
Y=12
W=190
H=18
Text="Disks"
; Even though the text is set to Disk, Rainmeter will display
; it as DISK, because styleTitle contains StringCase=UPPER.

[meterLabelDisk1]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=40
W=190
H=14
Text="#disk1#\"

[meterValueDisk1]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk1
MeasureName2=measureTotalDisk1
X=200
Y=0r
; r stands for relative. In this case, the Y postition of meterValueCPU is 0 pixels
; below the Y value of the previous meter (i.e it's the same as in meterLabelCPU).
W=190
H=14
Text="%1B/%2B"
; %1 stands for the value of MeasureName (measureUsedDisk1 in this case).
; %2 stands for the value of MeasureName2.
NumOfDecimals=1
AutoScale=1
; Because disk measures return the free/used space in bytes, we must use AutoScale=1 to
; automatically scale the value into a more readable figure.
LeftMouseUpAction=!Execute ["#disk1#\"]
; Open #disk1# on click

[meterBarDisk1]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk1
X=10
Y=52
W=190
H=1

[meterLabelDisk2]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=60
W=190
H=14
Text="FAT32 (#disk2#)"
LeftMouseUpAction=!Execute ["#disk2#\"]

[meterValueDisk2]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk2
MeasureName2=measureTotalDisk2
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk2]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk2
X=10
Y=72
W=190
H=1

[meterLabelDisk3]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=80
W=190
H=14
Text="gamez (#disk3#)"
LeftMouseUpAction=!Execute ["#disk3#\"]

[meterValueDisk3]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk3
MeasureName2=measureTotalDisk3
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk3]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk3
X=10
Y=92
W=190
H=1

[meterLabelDisk4]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=100
W=190
H=14
Text="downloadz (#disk4#)"
LeftMouseUpAction=!Execute ["#disk4#\"]

[meterValueDisk4]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk4
MeasureName2=measureTotalDisk4
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk4]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk4
X=10
Y=112
W=190
H=1

[meterLabelDisk5]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=120
W=190
H=14
Text="#disk5#\"
LeftMouseUpAction=!Execute ["#disk5#\"]

[meterValueDisk5]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk5
MeasureName2=measureTotalDisk5
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk5]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk5
X=10
Y=132
W=190
H=1

[meterLabelDisk6]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=140
W=190
H=14
Text="Data (#disk6#)"
LeftMouseUpAction=!Execute ["#disk6#\"]

[meterValueDisk6]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk6
MeasureName2=measureTotalDisk6
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk6]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk6
X=10
Y=132
W=190
H=1

[meterLabelDisk7]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=160
W=190
H=14
Text="Tyrael (#disk7#)"
LeftMouseUpAction=!Execute ["#disk7#\"]

[meterValueDisk7]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk7
MeasureName2=measureTotalDisk7
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk7]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk7
X=10
Y=152
W=190
H=1

[meterLabelDisk8]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=180
W=190
H=14
Text="#disk8#\"
LeftMouseUpAction=!Execute ["#disk8#\"]

[meterValueDisk8]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk8
MeasureName2=measureTotalDisk8
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk8]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk8
X=10
Y=172
W=190
H=1
Thanx for any help :)
User avatar
Scolex
Posts: 111
Joined: July 31st, 2010, 8:52 am

Re: [Illustro - Disks] Consistent measures with curious disp

Post by Scolex »

Try this I fond a position mistake Bars 5 and 6 were both Y=132

Code: Select all

; Lines starting ; (semicolons) are commented out.
; That is, they do not affect the code and are here for demonstration purposes only.
; ----------------------------------

; HOWTO: Adding more disks
; ----------------------------------
; Adding more disks is a pretty straightforward process. Follow the following steps to turn
; this 2 disks skin into a 3 disks skin. You can then extend it even further as you wish.
;
; 1) Create a new variable called disk3=X: directly below disk2=D: in the [Variables] section
; 2) Create a copy of the [measureTotalDisk2] and [measureUsedDisk2] sections
; 3) Rename the copied sections to [measureTotalDisk3] and [measureUsedDisk3], respectively.
;    Also change Drive=#disk2# to Drive=#disk3#
; 4) Now find the [meterBackground] section and change 2Line.png to 3Line.png in ImageName
; 5) Create a copy of the [meterLabelDisk2], [meterValueDisk2], and [meterBarDisk3].
;    Rename all Disk2's in the copied sections to Disk3.
; 6) Now we need to change the Y= values to adjust height. Change Y= under [meterLabelDisk2]
;    to Y=80 (calculated by adding 20 to the Y= value of previous meterLabel).
;    Then change Y= under [meterBarDisk3] to Y=92 (calculated by adding 20 to the Y= value of previous meterBar).
; 7) Save the file as '3 Disks.ini'. Now right-click on the Rainmeter tray icon and select
;    'Refresh All'. Now go activate the '3 Disks.ini' skin and enjoy! :)

[Rainmeter]
; This section contains general settings that can be used to change how Rainmeter behaves.
Author=poiru
AppVersion=1003000
Update=1000

[Metadata]
; Contains basic information of the skin.
Name=Disks
Description=Displays the usage of your disks.
License=Creative Commons BY-NC-SA 3.0
Version=1.0.0

[Variables]
; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).
fontName=Trebuchet MS
textSize=8
colorBar=235,170,0,255
colorText=255,255,255,205
disk1=C:
disk2=D:
disk3=E:
disk4=F:
disk5=G:
disk6=I:
disk7=K:
disk8=L:

; ----------------------------------
; MEASURES return some kind of value
; ----------------------------------

[measureTotalDisk1]
; This measure returns the total disk space
Measure=FreeDiskSpace
Drive=#disk1#
Total=1
UpdateDivider=120

[measureUsedDisk1]
; Returns inverted value of free disk space (i.e. used disk space)
Measure=FreeDiskSpace
Drive=#disk1#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
Total=1
UpdateDivider=120

[measureUsedDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
Total=1
UpdateDivider=120

[measureUsedDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
Total=1
UpdateDivider=120

[measureUsedDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk5]
Measure=FreeDiskSpace
Drive=#disk5#
Total=1
UpdateDivider=120

[measureUsedDisk5]
Measure=FreeDiskSpace
Drive=#disk5#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk6]
Measure=FreeDiskSpace
Drive=#disk6#
Total=1
UpdateDivider=120

[measureUsedDisk6]
Measure=FreeDiskSpace
Drive=#disk6#
InvertMeasure=1
UpdateDivider=120

[measureTotalDisk7]
Measure=FreeDiskSpace
Drive=#disk7#
Total=1
UpdateDivider=10

[measureUsedDisk7]
Measure=FreeDiskSpace
Drive=#disk7#
InvertMeasure=1
UpdateDivider=10

[measureTotalDisk8]
Measure=FreeDiskSpace
IgnoreRemovable=0
Drive=#disk8#
Total=1
UpdateDivider=10

[measureUsedDisk8]
Measure=FreeDiskSpace
IgnoreRemovable=0
Drive=#disk8#
InvertMeasure=1
UpdateDivider=10

; ----------------------------------
; STYLES are used to "centralize" options
; ----------------------------------

[styleTitle]
StringAlign=CENTER
StringCase=UPPER
StringStyle=BOLD
StringEffect=SHADOW
FontEffectColor=0,0,0,50
FontColor=#colorText#
FontFace=#fontName#
FontSize=10
AntiAlias=1
ClipString=1

[styleLeftText]
StringAlign=LEFT
; Meters using styleLeftText will be left-aligned.
StringCase=NONE
StringStyle=BOLD
StringEffect=SHADOW
FontEffectColor=0,0,0,20
FontColor=#colorText#
FontFace=#fontName#
FontSize=#textSize#
AntiAlias=1
ClipString=1

[styleRightText]
StringAlign=RIGHT
StringCase=NONE
StringStyle=BOLD
StringEffect=SHADOW
FontEffectColor=0,0,0,20
FontColor=#colorText#
FontFace=#fontName#
FontSize=#textSize#
AntiAlias=1
ClipString=1

[styleBar]
BarColor=#colorBar#
BarOrientation=HORIZONTAL
SolidColor=255,255,255,15

; ----------------------------------
; METERS display images, text, bars, etc.
; ----------------------------------

[meterBackground]
Meter=IMAGE
ImageName=#SKINSPATH#\illustro\SHARED\Background8Line.png
; #SKINSPATH# is a global variable that stands for your skin path. It is
; usually Documents\Rainmeter\Skins.
X=0
Y=0

[meterTitle]
Meter=STRING
MeterStyle=styleTitle
; Using MeterStyle=styleTitle will basically "copy" the
; contents of the [styleTitle] section here during runtime.
X=100
Y=12
W=190
H=18
Text="Disks"
; Even though the text is set to Disk, Rainmeter will display
; it as DISK, because styleTitle contains StringCase=UPPER.

[meterLabelDisk1]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=40
W=190
H=14
Text="#disk1#\"

[meterValueDisk1]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk1
MeasureName2=measureTotalDisk1
X=200
Y=0r
; r stands for relative. In this case, the Y postition of meterValueCPU is 0 pixels
; below the Y value of the previous meter (i.e it's the same as in meterLabelCPU).
W=190
H=14
Text="%1B/%2B"
; %1 stands for the value of MeasureName (measureUsedDisk1 in this case).
; %2 stands for the value of MeasureName2.
NumOfDecimals=1
AutoScale=1
; Because disk measures return the free/used space in bytes, we must use AutoScale=1 to
; automatically scale the value into a more readable figure.
LeftMouseUpAction=!Execute ["#disk1#\"]
; Open #disk1# on click

[meterBarDisk1]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk1
X=10
Y=52
W=190
H=1

[meterLabelDisk2]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=60
W=190
H=14
Text="FAT32 (#disk2#)"
LeftMouseUpAction=!Execute ["#disk2#\"]

[meterValueDisk2]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk2
MeasureName2=measureTotalDisk2
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk2]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk2
X=10
Y=72
W=190
H=1

[meterLabelDisk3]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=80
W=190
H=14
Text="gamez (#disk3#)"
LeftMouseUpAction=!Execute ["#disk3#\"]

[meterValueDisk3]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk3
MeasureName2=measureTotalDisk3
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk3]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk3
X=10
Y=92
W=190
H=1

[meterLabelDisk4]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=100
W=190
H=14
Text="downloadz (#disk4#)"
LeftMouseUpAction=!Execute ["#disk4#\"]

[meterValueDisk4]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk4
MeasureName2=measureTotalDisk4
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk4]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk4
X=10
Y=112
W=190
H=1

[meterLabelDisk5]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=120
W=190
H=14
Text="#disk5#\"
LeftMouseUpAction=!Execute ["#disk5#\"]

[meterValueDisk5]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk5
MeasureName2=measureTotalDisk5
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk5]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk5
X=10
Y=132
W=190
H=1

[meterLabelDisk6]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=140
W=190
H=14
Text="Data (#disk6#)"
LeftMouseUpAction=!Execute ["#disk6#\"]

[meterValueDisk6]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk6
MeasureName2=measureTotalDisk6
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk6]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk6
X=10
Y=152
W=190
H=1

[meterLabelDisk7]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=160
W=190
H=14
Text="Tyrael (#disk7#)"
LeftMouseUpAction=!Execute ["#disk7#\"]

[meterValueDisk7]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk7
MeasureName2=measureTotalDisk7
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk7]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk7
X=10
Y=172
W=190
H=1

[meterLabelDisk8]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=180
W=190
H=14
Text="#disk8#\"
LeftMouseUpAction=!Execute ["#disk8#\"]

[meterValueDisk8]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk8
MeasureName2=measureTotalDisk8
X=200
Y=0r
W=190
H=14
Text="%1B/%2B"
NumOfDecimals=1
AutoScale=1

[meterBarDisk8]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk8
X=10
Y=192
W=190
H=1
MoMotte
Posts: 2
Joined: March 26th, 2011, 5:09 pm

Re: [Illustro - Disks] Consistent measures with curious disp

Post by MoMotte »

Arr, i should have triple checked instead of double check ^^

That fixed it, bars below the fifth one needed the 20px shift :)

Thx a lot

BTW, am i supposed to put a [SOLVED] flag somewhere ?