summaryrefslogtreecommitdiff
path: root/wx+/grid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/grid.cpp')
-rw-r--r--wx+/grid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/grid.cpp b/wx+/grid.cpp
index 30192548..003e9a0e 100644
--- a/wx+/grid.cpp
+++ b/wx+/grid.cpp
@@ -43,7 +43,7 @@ namespace
//------------ Grid Constants --------------------------------
const double MOUSE_DRAG_ACCELERATION = 1.5; //unit: [rows / (pixel * sec)] -> same value as Explorer!
const int DEFAULT_COL_LABEL_BORDER = 6; //top + bottom border in addition to label height
-const int COLUMN_LABEL_BORDER = GridData::COLUMN_GAP_LEFT;
+//const int COLUMN_LABEL_BORDER = GridData::COLUMN_GAP_LEFT;
const int COLUMN_MOVE_DELAY = 5; //unit: [pixel] (from Explorer)
const int COLUMN_MIN_WIDTH = 40; //only honored when resizing manually!
const int ROW_LABEL_BORDER = 3;
bgstack15