Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Added keyboard shortcuts in "QR Code" page (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
lpeyr committed Apr 20, 2022
1 parent 6c7b310 commit b0bfb42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gerayis/Pages/QRCodePage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ namespace Gerayis.Pages;
/// </summary>
public partial class QRCodePage : Page
{

public QRCodePage()
{
InitializeComponent();
Expand Down Expand Up @@ -136,7 +137,7 @@ internal void GenerateBtn_Click(object sender, RoutedEventArgs e)
}
}

private void CopyBtn_Click(object sender, RoutedEventArgs e)
internal void CopyBtn_Click(object sender, RoutedEventArgs e)
{
if (QRCodeImg.Source is not null) // If the image is not empty
{
Expand Down

0 comments on commit b0bfb42

Please sign in to comment.