Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2107,6 +2107,11 @@ public Collection<Integer> getPreservedZoomLevels() {
return Collections.singleton(baseZoom);
}

@Override
protected long configureGCData(GCData data) {
return configureGC(data, DPIUtil.getDeviceZoom());
}

@Override
protected Rectangle getBounds(int zoom) {
Rectangle rectangle = new Rectangle(0, 0, width, height);
Expand Down
Loading