Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(qvtkinteractor): fix native widget drawing #200

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Jul 14, 2022

  1. Configuration menu
    Copy the full SHA
    f074dad View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2022

  1. Configuration menu
    Copy the full SHA
    94b7cda View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2022

  1. Bump check-jsonschema from 0.17.0 to 0.17.1 (pyvista#201)

    Bumps [check-jsonschema](https://github.com/python-jsonschema/check-jsonschema) from 0.17.0 to 0.17.1.
    - [Release notes](https://github.com/python-jsonschema/check-jsonschema/releases)
    - [Changelog](https://github.com/python-jsonschema/check-jsonschema/blob/main/CHANGELOG.rst)
    - [Commits](python-jsonschema/check-jsonschema@0.17.0...0.17.1)
    
    ---
    updated-dependencies:
    - dependency-name: check-jsonschema
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and adamgranthendry committed Jul 16, 2022
    Configuration menu
    Copy the full SHA
    2bfe31d View commit details
    Browse the repository at this point in the history
  2. Bump sphinx-notfound-page from 0.8 to 0.8.3 (pyvista#199)

    Bumps [sphinx-notfound-page](https://github.com/readthedocs/sphinx-notfound-page) from 0.8 to 0.8.3.
    - [Release notes](https://github.com/readthedocs/sphinx-notfound-page/releases)
    - [Changelog](https://github.com/readthedocs/sphinx-notfound-page/blob/main/CHANGELOG.rst)
    - [Commits](readthedocs/sphinx-notfound-page@0.8...0.8.3)
    
    ---
    updated-dependencies:
    - dependency-name: sphinx-notfound-page
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and adamgranthendry committed Jul 16, 2022
    Configuration menu
    Copy the full SHA
    bebabe5 View commit details
    Browse the repository at this point in the history
  3. fix(container_window): remove createWindowContainer

    Having `createWindowContainer` in `QVTKRenderWindowInteractor` is
    causing segfaults. Instead, teach users to add
    
    ```python
    window_ = QtGui.QWindow.fromWinId(self.plotter.winId())
    self.container = self.createWindowContainer(window_, self)
    ```
    
    to their `MainWindow` class.
    adamgranthendry committed Jul 16, 2022
    Configuration menu
    Copy the full SHA
    07eb6fd View commit details
    Browse the repository at this point in the history