Commit a194f49a authored by Evan W. Patton's avatar Evan W. Patton Committed by Susan Rati Lane

Fix tutorial panel sizing (#1904)

Change-Id: Ib3142c60ecb389da2b304d96c30308cb08939ebb
parent 9615b7a7
......@@ -2604,6 +2604,7 @@ public class Ode implements EntryPoint {
private void showTutorials() {
if (tutorialVisible) {
tutorialPanel.setVisible(true);
overDeckPanel.setCellWidth(tutorialPanel, "300");
}
}
......@@ -2612,6 +2613,7 @@ public class Ode implements EntryPoint {
if (visible) {
tutorialPanel.setVisible(true);
tutorialPanel.setWidth("300px");
overDeckPanel.setCellWidth(tutorialPanel, "300");
} else {
tutorialPanel.setVisible(false);
overDeckPanel.setCellWidth(tutorialPanel, "0%");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment