MCPcopy Create free account
hub / github.com/badvision/jace / setZoom

Method setZoom

src/main/java/jace/ui/MetacheatUI.java:507–514  ·  view source on GitHub ↗
(double zoom)

Source from the content-addressed store, hash-verified

505 }
506
507 private void setZoom(double zoom) {
508 if (memoryViewCanvas != null) {
509 memoryViewCanvas.setScaleX(zoom);
510 memoryViewCanvas.setScaleY(zoom);
511 StackPane scrollArea = (StackPane) memoryViewCanvas.getParent();
512 scrollArea.setPrefSize(memoryViewCanvas.getWidth() * zoom, memoryViewCanvas.getHeight() * zoom);
513 }
514 }
515
516 public void detach() {
517 cheatsTableView.setItems(FXCollections.emptyObservableList());

Callers 2

redrawMemoryViewMethod · 0.95
changeZoomMethod · 0.95

Calls 3

getParentMethod · 0.45
getWidthMethod · 0.45
getHeightMethod · 0.45

Tested by

no test coverage detected