Feature #1032
Go back/forward enable option in file menubar
Status: | Approved | Start date: | 04/01/2015 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | Miroslav Fidler | % Done: | 0% | |
Category: | IDE | Spent time: | - | |
Target version: | - |
Description
Go back/forward operation can be easily check... Below is exemplary implementation (ide/idebar.cpp - line 73):
menu.Add("Go back", THISBACK(HistoryBk)) .Key(K_ALT_LEFT) .Enable(histi > 0); menu.Add("Go forward", THISBACK(HistoryFw)) .Key(K_ALT_RIGHT) .Enable(histi < history.GetCount() - 1);
History
#1 Updated by Zbigniew Rebacz about 9 years ago
- Status changed from Patch ready to Approved