Skip to content

Commit

Permalink
Fix hotkey to be compatible with windows 7
Browse files Browse the repository at this point in the history
  • Loading branch information
TaoK committed Oct 7, 2013
1 parent 06040e5 commit 4270c0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions NanoTimeTracker/LogWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4270c0b

Please sign in to comment.