File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 297297text: ' Storage Space'
298298y: int (self .parent.height/ 2 ) + 17
299299RelThickLabel:
300- text: str (round (app.used_space/ app.allocated_space* 100 )) + ' %'
300+ text: str (int ( round (app.used_space/ app.allocated_space* 100 ) )) + ' %'
301301y: int (self .parent.height/ 2 ) + 17
302302right: self .parent.width + 0 * self .width
303303RelThinLabel:
318318LabelTypeUpper:
319319text: ' FREE'
320320LabelTypeLower:
321- text: str (round ((app.allocated_space - app.used_space) / app.denominator_factor)) + ' ' + app.denominator
321+ text: str (int ( round ((app.allocated_space - app.used_space) / app.denominator_factor) )) + ' ' + app.denominator
322322ElementLayout:
323323RelativeLayout:
324324orientation: ' vertical'
325325LabelTypeUpper:
326326text: ' USED'
327327LabelTypeLower:
328- text: str (round (app.used_space / app.denominator_factor)) + ' ' + app.denominator
328+ text: str (int ( round (app.used_space / app.denominator_factor) )) + ' ' + app.denominator
329329ElementLayout:
330330size_hint: None , 1 ,
331331width: int (self .parent.width/ 3 )
334334LabelTypeUpper:
335335text: ' TOTAL'
336336LabelTypeLower:
337- text: str (round (app.allocated_space / app.denominator_factor)) + ' ' + app.denominator
337+ text: str (int ( round (app.allocated_space / app.denominator_factor) )) + ' ' + app.denominator
338338NavButtonContainer:
339339NavButton:
340340text: ' SETTINGS'
You can’t perform that action at this time.
0 commit comments