-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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] Concatenate bugfix #1886
[FIX] Concatenate bugfix #1886
Conversation
Current coverage is 89.25% (diff: 100%)@@ master #1886 diff @@
==========================================
Files 86 86
Lines 9100 9100
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
Hits 8122 8122
Misses 978 978
Partials 0 0
|
@@ -64,7 +64,7 @@ def __init__(self): | |||
self.primary_data = None | |||
self.more_data = OrderedDict() | |||
|
|||
mergebox = gui.vBox(self.controlArea, "Domain Merging") | |||
self.mergebox = mergebox = gui.vBox(self.controlArea, "Domain Merging") |
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.
mergebox
is only used once, so instead of defining it, you could just use self.mergebox
in L69.
Simpler and in this case even shorter.
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.
Fixed. Thanks!
[FIX] Concatenate bugfix (cherry picked from commit aafacce)
[FIX] Concatenate bugfix (cherry picked from commit aafacce)
[FIX] Concatenate bugfix (cherry picked from commit aafacce)
[FIX] Concatenate bugfix (cherry picked from commit aafacce)
Issue
Fixes #1872, #1869, and tries to fix a usability problem in #1865 by saner defaults and by deactivating a part of the widget settings that are not used in certain input combinations.
Includes