1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-12 23:34:08 +02:00

Fix reversed button tab order in FormMessage

This commit is contained in:
chylex 2018-01-28 19:39:12 +01:00
parent b81c26f93f
commit acacd9a5e5

View File

@ -133,7 +133,7 @@ public Button AddButton(string title, DialogResult result = DialogResult.OK, Con
Font = SystemFonts.MessageBoxFont,
Location = new Point(0, 12),
Size = new Size(BrowserUtils.Scale(88, dpiScale), BrowserUtils.Scale(26, dpiScale)),
TabIndex = buttonCount,
TabIndex = 256-buttonCount,
Text = title,
UseVisualStyleBackColor = true
};