-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fixed bug with new panels not always showing initial content (#200)
DH-18347: Fixed bug with new panels not always showing initial content ### Test Cases Using the script: ```python from deephaven import time_table t1 = time_table("PT2S") t2 = time_table("PT2S") t3 = time_table("PT2S") ``` Case 1 * Close all panels except the one containing the script. Run the entire script * A new tab group should open containing 3 panels * The active panel should be `t3` * Clicking on `t2` or `t1` should load it for the first time * Clicking off a loaded panel and back should not reload Case 2 * Close all panels except the one containing the script. Run the entire script * Close panels `t1` and `t2` * Rerun entire script * t1 and t2 should re-open to the right of t3 * t3 panel should refresh and remain the active panel * Clicking on t1 or t2 should load it the first time * Clicking off and back should not reload Case 3 * Close all panels except the one containing the script. Run the entire script * Drag t1 into a new tab group * It should load its content * Rerun entire script * All panels should remain in current tab groups * t1 and t3 should reload * t2 should not load until you click on it to make it visible Case 4 * Close all panels except the one containing the script. Run the entire script * Drag t3 to a new tab group * t2 should load its content as it becomes the active tab in the first tab group Case 5 * Close all panels except the one containing the script. Run the entire script * In the Panels treeview, click t3 * t3 should refresh * click t1 * t1 should become active and refresh * close t1 * click on t1 in the Panels treeview * t1 should re-open in the tab group
- Loading branch information
Showing
8 changed files
with
223 additions
and
55 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
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
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
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
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
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
Oops, something went wrong.