Bug #1592: Fix problem not showing the tab if it is already being shown
FEA: ItEr77S04BugFixing
This commit is contained in:
parent
787916b50d
commit
2b1ed0a998
1 changed files with 2 additions and 2 deletions
|
|
@ -133,11 +133,11 @@ public class TabOnModeType implements ITab {
|
|||
|
||||
@Override
|
||||
public void show() {
|
||||
beingShown = true;
|
||||
ITab currentTab = getCurrentTab();
|
||||
if (currentTab != null) {
|
||||
if (currentTab != null && !beingShown) {
|
||||
currentTab.show();
|
||||
}
|
||||
beingShown = true;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue