From 75771564e4d30d46f39b5e66a9aecc04c53c5922 Mon Sep 17 00:00:00 2001 From: Danny Tuppeny Date: Tue, 18 Sep 2018 12:05:56 +0100 Subject: [PATCH] Switch memory and perf views to virtual tables --- lib/memory/memory.dart | 2 +- lib/performance/performance.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/memory/memory.dart b/lib/memory/memory.dart index ebcd153a317..8be43bd750f 100644 --- a/lib/memory/memory.dart +++ b/lib/memory/memory.dart @@ -175,7 +175,7 @@ class MemoryScreen extends Screen { } CoreElement _createTableView() { - memoryTable = new Table(); + memoryTable = new Table.virtual(); memoryTable.addColumn(new MemoryColumnSize()); memoryTable.addColumn(new MemoryColumnInstanceCount()); diff --git a/lib/performance/performance.dart b/lib/performance/performance.dart index f8748f1b5c0..215c0238470 100644 --- a/lib/performance/performance.dart +++ b/lib/performance/performance.dart @@ -127,7 +127,7 @@ class PerformanceScreen extends Screen { } CoreElement _createTableView() { - perfTable = new Table(); + perfTable = new Table.virtual(); perfTable.addColumn(new PerfColumnInclusive()); perfTable.addColumn(new PerfColumnSelf());