Skip to content

Commit

Permalink
Merge pull request #9 from uermel/uermel/copick_bugfixes
Browse files Browse the repository at this point in the history
bugfixes after demo
  • Loading branch information
uermel authored Apr 30, 2024
2 parents 7ea24fa + f0d0b86 commit 57551b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]

[project]
name = "ChimeraX-copick"
version = "0.2.2"
version = "0.2.3"
dynamic = ["classifiers", "requires-python"]
dependencies = [
"ChimeraX-Core>=1.7",
Expand Down
1 change: 0 additions & 1 deletion src/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ def update_stepper(self, partlist: ParticleList):
self.stepper_list = list(partlist.data.particle_ids)
self._mw.picks_stepper(self.stepper_list)
self._active_particle = None
print(self.stepper_list)

def _set_active_particle(self, idx: int):
self.active_particle = idx
Expand Down
4 changes: 2 additions & 2 deletions src/toolbar/toolbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"Orthoplanes": switch_to_ortho,
"Surface": switch_to_surf,
"1x": partial(set_step, (1, 1, 1)),
"0.5x": partial(set_step, (2, 2, 2)),
"0.25x": partial(set_step, (4, 4, 4)),
"2x": partial(set_step, (2, 2, 2)),
"4x": partial(set_step, (4, 4, 4)),
}


Expand Down

0 comments on commit 57551b7

Please sign in to comment.