fix: bonzy mess

This commit is contained in:
tux
2025-07-04 16:08:41 +05:30
parent a5d179d60d
commit c8f13bd437
6 changed files with 16 additions and 33 deletions

View File

@@ -45,7 +45,7 @@
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"
Spacing="5" Margin="10 0">
<TextBlock FontSize="12" Text="Audio:" />
<TextBlock FontSize="12" Text="Alt + A | | Alt + Shift + A" />
<TextBlock FontSize="12" Text="SHIFT + A" />
</StackPanel>
</Border>
<Button Name="ChatBtn" Background="Transparent" Click="ChatBtnClick">

View File

@@ -95,21 +95,12 @@ public partial class MainWindow : Window
{
Dispatcher.UIThread.Post(() => { _chatUserControl.SendScreenshot(); });
}
if (hasAlt && hasA)
if (hasShift && hasA)
{
Dispatcher.UIThread.Post(() => { _chatUserControl.StartRecord(); });
}
if (hasAlt && hasShift && hasA)
{
Dispatcher.UIThread.Post(() => { _chatUserControl.StopRecord(); });
}
/* if (hasShift && hasA)
{
Dispatcher.UIThread.Post(() => { _chatUserControl.SendAudio(); });
}*/
if (hasAlt && hasShift && hasQ)
{
Dispatcher.UIThread.Post(() => { Environment.Exit(0); });