| 669 | } |
| 670 | |
| 671 | void TwitchTokenSettingsDialog::CheckIfTokenValid() |
| 672 | { |
| 673 | if (_currentToken._token.empty()) { |
| 674 | return; |
| 675 | } |
| 676 | if (_currentToken.IsValid(true)) { |
| 677 | return; |
| 678 | } |
| 679 | _tokenStatus->setText( |
| 680 | obs_module_text("AdvSceneSwitcher.twitchToken.request.notSet")); |
| 681 | } |
| 682 | |
| 683 | void TwitchTokenSettingsDialog::ShowToken() |
| 684 | { |
nothing calls this directly
no test coverage detected