mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-08-01 04:58:44 +02:00
12 lines
267 B
C++
12 lines
267 B
C++
#include "common.h"
|
|
#include "settings/ISettingsController.h"
|
|
#include "ThemeListItemViewModel.h"
|
|
|
|
void ThemeListItemViewModel::Activate()
|
|
{
|
|
if (_extraThemeInfo)
|
|
{
|
|
_settingsController->SelectTheme(_extraThemeInfo->themeInfo->GetFolderName());
|
|
}
|
|
}
|