mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-10 03:54:54 -06:00
ide: Removed Insert hotkeys in Cocoa
git-svn-id: svn://ultimatepp.org/upp/trunk@12688 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
3bf06190d9
commit
bc3cd0f975
3 changed files with 17 additions and 8 deletions
|
|
@ -5,19 +5,14 @@ sooner:
|
|||
|
||||
- Warning: Terminal '/usr/bin/xterm' not found, executing in background.
|
||||
|
||||
- Topic++, menu at topics, New topic has wrong hotkey
|
||||
- New assembly - wrong hotkey (?)
|
||||
|
||||
- cursor problem after local menu invocation (better, but still...)
|
||||
- icondes - rightclick on image in the list, then move mouse over color ramp - weird focus issue happens
|
||||
|
||||
- Uword cursor is blinking even in background
|
||||
|
||||
- UHD problem with tabbar
|
||||
- UHD problem with Prompt text size ([g ?)
|
||||
- fix package organiser link options (joining link options missing space)
|
||||
|
||||
- download .scd files (or put to bundle)
|
||||
- download .ucd files (or put to bundle)
|
||||
|
||||
* apple debugger
|
||||
|
||||
|
|
@ -69,6 +64,11 @@ later:
|
|||
|
||||
done:
|
||||
|
||||
- New assembly - wrong hotkey (?)
|
||||
|
||||
- Topic++, menu at topics, New topic has wrong hotkey
|
||||
|
||||
- Uword cursor is blinking even in background
|
||||
|
||||
- .iml D&D does not work
|
||||
|
||||
|
|
|
|||
|
|
@ -215,7 +215,11 @@ void TopicEditor::TopicMenu(Bar& bar)
|
|||
if(IsNull(grouppath))
|
||||
return;
|
||||
bar.Add("New topic..", THISBACK(NewTopic))
|
||||
.Key(K_CTRL_N).Key(K_ALT_INSERT);
|
||||
.Key(K_CTRL_N)
|
||||
#ifndef PLATFORM_COCOA
|
||||
.Key(K_ALT_INSERT)
|
||||
#endif
|
||||
;
|
||||
bar.Add(topics_list.IsCursor(), "Move topic..", THISBACK(MoveTopic));
|
||||
bar.Add(topics_list.IsCursor(), "Delete topic", THISBACK(RemoveTopic))
|
||||
.Key(K_ALT_DELETE);
|
||||
|
|
|
|||
|
|
@ -342,7 +342,12 @@ void SelectPackageDlg::SyncSvnDirs()
|
|||
void SelectPackageDlg::ToolBase(Bar& bar)
|
||||
{
|
||||
bar.Add("New assembly..", THISBACK(OnBaseAdd))
|
||||
.Key(K_INSERT);
|
||||
#ifdef PLATFORM_COCOA
|
||||
.Key(K_CTRL_N)
|
||||
#else
|
||||
.Key(K_INSERT)
|
||||
#endif
|
||||
;
|
||||
bar.Add(base.IsCursor(), "Edit assembly..", THISBACK(OnBaseEdit))
|
||||
.Key(K_CTRL_ENTER);
|
||||
bar.Add(base.IsCursor(), "Remove assembly", THISBACK(OnBaseRemove))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue