Skip to content

Commit

Permalink
used imported biaplotter
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-mueller committed Jul 18, 2024
1 parent 8a84bb7 commit 9b4fca6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions napari_clusters_plotter/new_plotter_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import napari
import numpy as np
from napari.utils.colormaps import ALL_COLORMAPS
from plotter import PlotWidget # TODO make local import with "."
from biaplotter import CanvasWidget # TODO make local import with "."
from qtpy import uic
from qtpy.QtCore import Qt
from qtpy.QtWidgets import (
Expand Down Expand Up @@ -46,7 +46,7 @@ def __init__(self, napari_viewer):
self.layout = QVBoxLayout(self.contents)
self.layout.setAlignment(Qt.AlignTop)

self.plotting_widget = PlotWidget(napari_viewer, self)
self.plotting_widget = CanvasWidget(napari_viewer, self)

def replot():
# redraw the whole plot
Expand Down

0 comments on commit 9b4fca6

Please sign in to comment.