-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PART 1] GUI: Fix reconciliation button graying out bug (#218)
* Fix reconciliation button graying out bug As documented in #180, sometimes `View reconciliations` and `View p-value histogram` buttons become unexpectedly grayed out after setting the transfer cost to 1.5, clicking compute reconciliations, and then set the number of cluster. This happens because our code says we will gray out the compute reconciliation button and other buttons when an action happens to the three cost boxes (duplication, transfer, loss). The problem with this is that when we click on `View solution space` -> `Clusters`, the event `focusout` and `focusin` are triggered by the input boxes, graying out the button. The fix is to have the gray out command run only on `key` event, which is triggered on text change. Resolve #180 * Fix cluster bug (#219)
- Loading branch information
1 parent
cb58987
commit bd7823c
Showing
1 changed file
with
23 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters