Fix super long list overlap display problem in Emulator

This commit is contained in:
cuu
2018-06-02 12:24:39 +08:00
parent 1a1ac3bdff
commit 778067aca1
5 changed files with 62 additions and 5 deletions

View File

@@ -204,7 +204,7 @@ class AboutPage(Page):
memory = {}
memory["key"] = "memory"
memory["label"] = "Memory:"
memory["value"] = str( int(parts[1].strip())/1000.0) +" Mb"
memory["value"] = str( int(parts[1].strip())/1000.0) +" MB"
self._AList["memory"] = memory
break