Skip to content
Snippets Groups Projects
Commit 6e1d9910 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Minor style checking cleanups.

parent c8f6fd91
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,8 @@ using NLog.Config;
using NLog.Targets;
using Timer = System.Timers.Timer;
// ReSharper disable RedundantDefaultMemberInitializer
namespace ATxTray
{
public class AutoTxTray : ApplicationContext
......@@ -296,8 +298,8 @@ namespace ATxTray
}
catch (Exception ex) {
Log.Error("Showing the TaskDialog failed: {0}", ex.Message);
var res = MessageBox.Show($"{instructionText}\n{footerText}\n\n" +
"Press [OK] to confirm selection.", caption,
var res = MessageBox.Show($@"{instructionText}\n{footerText}\n\n" +
@"Press [OK] to confirm selection.", caption,
MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
if (res == DialogResult.OK)
SubmitDirForTransfer();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment