Skip to content

Commit

Permalink
breathe was already in quick insert
Browse files Browse the repository at this point in the history
  • Loading branch information
wbsoft committed Jan 12, 2012
1 parent 07584f4 commit fa5a2bb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
6 changes: 4 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ ChangeLog of Frescobaldi, http://www.frescobaldi.org/
Changes in 2.0.2 --

* New features:
- run LilyPond with English (untranslated) messages
- optionally run LilyPond with English (untranslated) messages
* Improvements:
- make convert-ly work under Windows
- "Manage templates" command added in File->templates menu
- more snippets in Insert menu
- enlarged some too small icons
- added some more hyphenation dictionaries
- file entry fields (like in preferences) are faster
- on non-X11 platforms the maximized state of the window is remembered
* Bug fixes:
- make convert-ly work under Windows
- snippet import/export now works in the Windows-installer binary
- PDF now correctly updates when "Save document on compile" is enabled

Expand Down
1 change: 1 addition & 0 deletions frescobaldi_app/quickinsert/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def __init__(self, panel):
def createDefaultShortcuts(self):
self.setDefaultShortcuts('staccato', [QKeySequence('Ctrl+.')])
self.setDefaultShortcuts('spanner_slur', [QKeySequence('Ctrl+(')])
self.setDefaultShortcuts('breathe_rcomma', [QKeySequence("Alt+'")])

def realAction(self, name):
return self.panel().widget().actionForName(name)
Expand Down
4 changes: 0 additions & 4 deletions frescobaldi_app/snippet/builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,6 @@
\times 2/3 { $SELECTION }"""),


'breathe': T(None,
r"""\breathe"""),


'onceoverride': T(None,
r"""-*- name: oo;
\once \override """),
Expand Down
1 change: 0 additions & 1 deletion frescobaldi_app/snippet/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ def createDefaultShortcuts(self):
self.setDefaultShortcuts('ly_version', [QKeySequence('Ctrl+Shift+V')])
self.setDefaultShortcuts('blankline', [QKeySequence('Ctrl+Shift+Return')])
self.setDefaultShortcuts('repeat', [QKeySequence('Ctrl+Shift+R')])
self.setDefaultShortcuts('breathe', [QKeySequence("Alt+'")])
self.setDefaultShortcuts('quotes_s', [QKeySequence("Ctrl+'")])
self.setDefaultShortcuts('quotes_d', [QKeySequence('Ctrl+"')])
self.setDefaultShortcuts('uppercase', [QKeySequence('Ctrl+U')])
Expand Down

0 comments on commit fa5a2bb

Please sign in to comment.