Fix Windows channel tree ordering
This commit is contained in:
@@ -150,8 +150,8 @@ public sealed class ChannelEditDialog : Form
|
||||
{
|
||||
Location = new Point(inputX, y - 2),
|
||||
Size = new Size(120, 23),
|
||||
Minimum = 0,
|
||||
Maximum = uint.MaxValue,
|
||||
Minimum = int.MinValue,
|
||||
Maximum = int.MaxValue,
|
||||
Value = existing?.SortOrder ?? 0,
|
||||
TabIndex = 5,
|
||||
};
|
||||
@@ -385,7 +385,7 @@ public sealed class ChannelEditDialog : Form
|
||||
PasswordProtected: _chkPassword.Checked,
|
||||
Password: _chkPassword.Checked ? _txtPassword.Text : null,
|
||||
MaxUsers: (uint)_numMaxUsers.Value,
|
||||
SortOrder: (uint)_numSortOrder.Value,
|
||||
SortOrder: (int)_numSortOrder.Value,
|
||||
Audio: audio);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user