()
| 97 | } |
| 98 | |
| 99 | private void resume() { |
| 100 | if (!paused || !isMainFrame) { return; } |
| 101 | |
| 102 | // Resume the sound |
| 103 | SoundSystem.instance.resume(); |
| 104 | |
| 105 | // Resume all hosted matches |
| 106 | for (final HostedMatch hostedMatch : Singletons.getControl().getCurrentMatches()) { |
| 107 | hostedMatch.resume(); |
| 108 | } |
| 109 | paused = false; |
| 110 | } |
| 111 | |
| 112 | public FTitleBarBase getTitleBar() { |
| 113 | return this.titleBar; |
no test coverage detected