mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
ide: Wordwrap moved to Advanced menu
git-svn-id: svn://ultimatepp.org/upp/trunk@11490 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
fb5d121acb
commit
081f923cc9
1 changed files with 2 additions and 2 deletions
|
|
@ -118,8 +118,6 @@ void Ide::OnlineSearchMenu(Bar& menu)
|
|||
void Ide::InsertAdvanced(Bar& bar)
|
||||
{
|
||||
bool b = !editor.IsReadOnly();
|
||||
bar.Add(AK_WORDWRAP, THISBACK(ToggleWordwrap))
|
||||
.Check(wordwrap);
|
||||
bar.Add(b, "Insert", THISBACK(InsertMenu));
|
||||
bar.Add(b, "Insert #include", THISBACK(InsertInclude));
|
||||
bar.Add(b, "Advanced", THISBACK(EditSpecial));
|
||||
|
|
@ -128,6 +126,8 @@ void Ide::InsertAdvanced(Bar& bar)
|
|||
void Ide::EditSpecial(Bar& menu)
|
||||
{
|
||||
bool b = !editor.IsReadOnly();
|
||||
menu.Add(AK_WORDWRAP, THISBACK(ToggleWordwrap))
|
||||
.Check(wordwrap);
|
||||
menu.Add(b, AK_SPACESTOTABS, THISBACK(EditMakeTabs))
|
||||
.Help("Convert leading blanks on each line to tabs");
|
||||
menu.Add(b, AK_TABSTOSPACES, THISBACK(EditMakeSpaces))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue