From 4270c0b82f7691d34ffcccbd46e0c5a672bed95a Mon Sep 17 00:00:00 2001 From: TaoK Date: Mon, 7 Oct 2013 15:29:46 -0400 Subject: [PATCH] Fix hotkey to be compatible with windows 7 --- NanoTimeTracker/LogWindow.cs | 5 +++-- README.txt | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/NanoTimeTracker/LogWindow.cs b/NanoTimeTracker/LogWindow.cs index 87080cb..9ed912c 100644 --- a/NanoTimeTracker/LogWindow.cs +++ b/NanoTimeTracker/LogWindow.cs @@ -75,8 +75,9 @@ private void LogWindow_Load(object sender, System.EventArgs e) NoTaskActiveIcon = new Icon(typeof(Icons.IconTypePlaceholder), "edit-clear-history-2-combined.ico"); TaskHotKey = new Hotkey(); - TaskHotKey.WindowsKey = true; - TaskHotKey.KeyCode = System.Windows.Forms.Keys.T; + TaskHotKey.WindowsKey = true; + TaskHotKey.Ctrl = true; + TaskHotKey.KeyCode = System.Windows.Forms.Keys.T; TaskHotKey.HotkeyPressed += new EventHandler(TaskHotKey_HotkeyPressed); try { diff --git a/README.txt b/README.txt index a390926..e137f57 100644 --- a/README.txt +++ b/README.txt @@ -10,7 +10,7 @@ overhead to one click and a task name/description typed in. Features: - System tray integration so you can see and update status without cluttering - - Hotkey support for instant and mouse-less task entry + - Hotkey support for instant and mouse-less task entry (Ctrl-Win-T) - Grid-view of time entries, for easy review and editing - At-a-glance stats, including billable and non-billable time for recent periods - Simple Xml-based storage format