InputRoll - make AllowRightClickSelect true by default
This commit is contained in:
parent
3c14371009
commit
557c68862e
|
@ -56,7 +56,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
public bool HideWasLagFrames { get; set; }
|
||||
|
||||
[Category("Behavior")]
|
||||
public bool AllowRightClickSelection { get; set; }
|
||||
public bool AllowRightClickSelection { get; set; } = true;
|
||||
|
||||
[Category("Behavior")]
|
||||
public bool LetKeysModifySelection { get; set; }
|
||||
|
|
|
@ -148,7 +148,6 @@
|
|||
//
|
||||
this.BranchView.AllowColumnReorder = false;
|
||||
this.BranchView.AllowColumnResize = false;
|
||||
this.BranchView.AllowRightClickSelection = true;
|
||||
this.BranchView.AlwaysScroll = false;
|
||||
this.BranchView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
|
|
|
@ -187,7 +187,6 @@
|
|||
//
|
||||
this.MarkerView.AllowColumnReorder = false;
|
||||
this.MarkerView.AllowColumnResize = false;
|
||||
this.MarkerView.AllowRightClickSelection = true;
|
||||
this.MarkerView.AlwaysScroll = false;
|
||||
this.MarkerView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
|
|
Loading…
Reference in New Issue