mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-21 14:03:11 -07:00
Disable Keyboard by default
This commit is contained in:
parent
aea23effe9
commit
a2ebf7e408
7 changed files with 9 additions and 3 deletions
|
@ -44,6 +44,7 @@ struct StreamSessionConnectInfo
|
|||
ChiakiConnectVideoProfile video_profile;
|
||||
unsigned int audio_buffer_size;
|
||||
bool fullscreen;
|
||||
bool enable_keyboard;
|
||||
|
||||
StreamSessionConnectInfo(Settings *settings, QString host, QByteArray regist_key, QByteArray morning, bool fullscreen);
|
||||
};
|
||||
|
|
|
@ -27,6 +27,7 @@ StreamSessionConnectInfo::StreamSessionConnectInfo(Settings *settings, QString h
|
|||
this->morning = morning;
|
||||
audio_buffer_size = settings->GetAudioBufferSize();
|
||||
this->fullscreen = fullscreen;
|
||||
this->enable_keyboard = false; // TODO: from settings
|
||||
}
|
||||
|
||||
static void AudioSettingsCb(uint32_t channels, uint32_t rate, void *user);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue