summaryrefslogtreecommitdiff
path: root/wx+
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:49:33 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:49:33 +0200
commita6e9143baf48bdc093788545636570808f9c103c (patch)
treed223a9360134cd8105a96ee0faf5c2643bd9141b /wx+
parent6.4 (diff)
downloadFreeFileSync-a6e9143baf48bdc093788545636570808f9c103c.tar.gz
FreeFileSync-a6e9143baf48bdc093788545636570808f9c103c.tar.bz2
FreeFileSync-a6e9143baf48bdc093788545636570808f9c103c.zip
6.5
Diffstat (limited to 'wx+')
-rw-r--r--wx+/grid.cpp2
-rw-r--r--wx+/key_event.h4
2 files changed, 3 insertions, 3 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;
diff --git a/wx+/key_event.h b/wx+/key_event.h
index 60cb7372..cd75bb78 100644
--- a/wx+/key_event.h
+++ b/wx+/key_event.h
@@ -62,8 +62,8 @@ public:
callback_(callback),
processingCallback(false)
{
- Hide(); //this is just a dummy window so that its parent can have ownership
- Disable(); //
+ Hide(); //this is just a dummy window so that its parent can have ownership
+ Disable(); //
//register global hotkeys (without needing explicit menu entry)
wxTheApp->Connect(wxEVT_KEY_DOWN, wxKeyEventHandler(LokalKeyEventHandler::onGlobalKeyEvent), nullptr, this);
bgstack15