InputRoll - don't hardcode padding variables in the constructor
This commit is contained in:
parent
bab5877d1a
commit
22fdbd08d0
|
@ -76,8 +76,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public InputRoll()
|
||||
{
|
||||
CellWidthPadding = 3;
|
||||
CellHeightPadding = 0;
|
||||
CurrentCell = null;
|
||||
ScrollMethod = "near";
|
||||
|
||||
|
|
|
@ -267,6 +267,7 @@
|
|||
//
|
||||
// lvCDL
|
||||
//
|
||||
this.lvCDL.CellWidthPadding = 3;
|
||||
this.lvCDL.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.lvCDL.FullRowSelect = true;
|
||||
this.lvCDL.GridLines = true;
|
||||
|
|
|
@ -94,6 +94,7 @@
|
|||
//
|
||||
// CheatListView
|
||||
//
|
||||
this.CheatListView.CellWidthPadding = 3;
|
||||
this.CheatListView.AllowColumnReorder = true;
|
||||
this.CheatListView.AllowColumnResize = true;
|
||||
this.CheatListView.MultiSelect = true;
|
||||
|
|
|
@ -237,6 +237,7 @@
|
|||
this.DisassemblerView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.DisassemblerView.CellWidthPadding = 3;
|
||||
this.DisassemblerView.AllowColumnReorder = false;
|
||||
this.DisassemblerView.AllowColumnResize = true;
|
||||
this.DisassemblerView.ContextMenuStrip = this.DisassemblerContextMenu;
|
||||
|
|
|
@ -802,6 +802,7 @@
|
|||
this.LuaListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.LuaListView.CellWidthPadding = 3;
|
||||
this.LuaListView.AllowColumnResize = true;
|
||||
this.LuaListView.AllowColumnReorder = false;
|
||||
this.LuaListView.ContextMenuStrip = this.ScriptListContextMenu;
|
||||
|
|
|
@ -1228,6 +1228,7 @@
|
|||
//
|
||||
// TasView
|
||||
//
|
||||
this.TasView.CellWidthPadding = 3;
|
||||
this.TasView.GridLines = true;
|
||||
this.TasView.AllowMassNavigationShortcuts = false;
|
||||
this.TasView.AllowColumnReorder = false;
|
||||
|
|
|
@ -179,6 +179,7 @@
|
|||
//
|
||||
// WatchListView
|
||||
//
|
||||
this.WatchListView.CellWidthPadding = 3;
|
||||
this.WatchListView.AllowColumnReorder = true;
|
||||
this.WatchListView.AllowColumnResize = true;
|
||||
this.WatchListView.AllowDrop = true;
|
||||
|
|
|
@ -878,6 +878,7 @@
|
|||
//
|
||||
// WatchListView
|
||||
//
|
||||
this.WatchListView.CellWidthPadding = 3;
|
||||
this.WatchListView.AllowColumnResize = true;
|
||||
this.WatchListView.AllowColumnReorder = true;
|
||||
this.WatchListView.FullRowSelect = true;
|
||||
|
|
Loading…
Reference in New Issue