Skip to content

Commit

Permalink
UI
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Jul 24, 2023
1 parent 4086098 commit 7b4e342
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 26 deletions.
45 changes: 23 additions & 22 deletions app/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions app/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public SettingsForm()
checkStartup.Text = Properties.Strings.RunOnStartup;

buttonMatrix.Text = Properties.Strings.PictureGif;
//buttonQuit.Text = Properties.Strings.Quit;
buttonQuit.Text = Properties.Strings.Quit;
buttonUpdates.Text = Properties.Strings.Updates;

FormClosing += SettingsForm_FormClosing;
Expand Down Expand Up @@ -893,8 +893,11 @@ public void SetModeLabel(string modeText)
public void AutoKeyboard()
{

AsusUSB.ApplyAuraPower();
AsusUSB.ApplyAura();
if (!AppConfig.Is("skip_aura"))
{
AsusUSB.ApplyAuraPower();
AsusUSB.ApplyAura();
}

InputDispatcher.SetBacklightAuto(true);

Expand Down
2 changes: 1 addition & 1 deletion app/Settings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
Expand Down

0 comments on commit 7b4e342

Please sign in to comment.