-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Homogenize Object inspector UI #2585
Conversation
@@ -199,6 +199,42 @@ def setup_page(self): | |||
self.setLayout(vlayout) | |||
|
|||
|
|||
class FrameWebView(QFrame): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move this widget to
spyderlib/widgets/browser.py
because that's where we put all QWebKit
widgets :-)
This is the only comment I have before merging (other than good job!)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok will do in a min ;-)
@ccordoba12 done! |
@@ -199,6 +199,7 @@ def setup_page(self): | |||
self.setLayout(vlayout) | |||
|
|||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this empty blank line. It's not needed because there are already two blanks before it :-)
Thanks a lot for this. Things look much better now! :-) |
Homogenize Object inspector UI
Description
Insert QWebView inside a QFrame to homogenize the UI
Before
After