-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for uncomment keyboard shortcut.
- Loading branch information
Showing
6 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -364,7 +364,7 @@ void MainWindow::createActions() | |
|
||
uncommentAction = new QAction(tr("Remove comment"), this); | ||
key = keySettings.value("uncomment", "default").toString(); | ||
stdKey = QKeySequence(QString("Shift+Ctrl+S")); | ||
stdKey = QKeySequence(QString("Shift+Ctrl+Q")); | ||
if (key == "default") | ||
key = stdKey.toString(); | ||
uncommentAction->setShortcut(key); | ||
|
@@ -2226,7 +2226,7 @@ void MainWindow::openAbout() | |
tr("simple Open Source IDE for NASM, MASM, GAS and FASM assembler languages.") + '\n' + | ||
tr("Licensed under the GNU GPL v3.0") + '\n' + | ||
tr("Based on the Qt.") + '\n' + | ||
tr("Copyright © 2013 Dmitriy Manushin") + '\n' + | ||
tr("Copyright (c) 2013 Dmitriy Manushin") + '\n' + | ||
tr("Development and idea - Dmitriy Manushin") + '\n' + | ||
tr("Icon and advices - Alick Gaybullaev") + '\n' + '\n' + | ||
tr("Wishes and error messages are sent to the e-mail: [email protected]") + '\n' + | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters