forked from qt-creator/qt-creator
Dumper: fix array 10000 format
Fixes: QTCREATORBUG-29196 Change-Id: I23ddb17ac3f378b6602057c1964ef5984b83e245 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -1386,7 +1386,7 @@ class DumperBase():
|
||||
self.putExpandable()
|
||||
return
|
||||
|
||||
if DisplayFormat.Array10 <= displayFormat and displayFormat <= DisplayFormat.Array1000:
|
||||
if DisplayFormat.Array10 <= displayFormat and displayFormat <= DisplayFormat.Array10000:
|
||||
n = (10, 100, 1000, 10000)[displayFormat - DisplayFormat.Array10]
|
||||
self.putType(typeName)
|
||||
self.putItemCount(n)
|
||||
|
Reference in New Issue
Block a user