Skip to content

Commit

Permalink
minor tickmark correction
Browse files Browse the repository at this point in the history
  • Loading branch information
aris committed Nov 8, 2024
1 parent 898e9b3 commit ecf8085
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ext/gui_ext.jl
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ The arguments are:
- `results` : The `inv_out_2D` matrix or vector containing the fit results.
Keyword (optional) arguments:
- `dims` : Dimensions of each plot (default: (400, 400)).
- `title` : Title of the plot (default is the title in the inv_out_2D).
- `colormap` : Color map of the plot (default: :viridis).
- `contf` : Whether to use a filled contour plot (default: false).
Expand Down Expand Up @@ -326,6 +327,7 @@ function Makie.plot!(fig::Union{Makie.Figure,Makie.GridPosition}, res::NMRInvers
xlabelsize=labelsizes[1], ylabelsize=labelsizes[2],
limits=(x[1], x[end], y[1], y[end]),
xticklabelsize=ticksizes[1], yticklabelsize=ticksizes[2],
xtickalign = 1.0, ytickalign = 1.0
)

Makie.deactivate_interaction!(axmain_values, :rectanglezoom) # Disable zoom
Expand Down

2 comments on commit ecf8085

@aris-mav
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/119171

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.2 -m "<description of version>" ecf8085bcf7cc16967f4eee1296e061d596c5bac
git push origin v0.9.2

Please sign in to comment.