Skip to content

Commit c2b7fd8

Browse files
author
Paweł Salawa
committed
#5378 Default hotkey to toggle Rows Height Adjusting is changed from Alt+H to Ctrl+Alt+H to avoid hoteky conflict with the Help menu hotkey
1 parent d20170f commit c2b7fd8

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
- BUGFIX: #5370 Fixed cell inline editor context menu actions for Copy, Cut and Delete.
2222
- BUGFIX: #5364 Fixed triggering inline cell editor with polish characters.
2323
- BUGFIX: #5379 Shorthand form of foreign key constraint now works correctly in cell inline editor.
24+
- BUGFIX: #5378 Default hotkey to toggle Rows Height Adjusting is changed from Alt+H to Ctrl+Alt+H to avoid hoteky conflict with the Help menu hotkey
2425
- BUGFIX: Fixed arbitrary crashes when opening SQL Editor, while having non-thread-safe SQLite extensions loaded in the active database.
2526

2627
### 3.4.17

SQLiteStudio3/guiSQLiteStudio/datagrid/sqlqueryview.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ CFG_KEY_LIST(SqlQueryView, QObject::tr("Data grid view"),
3131
CFG_KEY_ENTRY(DELETE_ROW, Qt::Key_Delete, QObject::tr("Delete selected data row"))
3232
CFG_KEY_ENTRY(INSERT_ROW, Qt::Key_Insert, QObject::tr("Insert new data row"))
3333
CFG_KEY_ENTRY(OPEN_VALUE_EDITOR, Qt::ALT + Qt::Key_Return, QObject::tr("Open contents of selected cell in a separate editor"))
34-
CFG_KEY_ENTRY(ADJUST_ROWS_SIZE, Qt::ALT + Qt::Key_H, QObject::tr("Toggle the height adjustment of rows"))
34+
CFG_KEY_ENTRY(ADJUST_ROWS_SIZE, Qt::CTRL + Qt::ALT + Qt::Key_H, QObject::tr("Toggle the height adjustment of rows"))
3535
CFG_KEY_ENTRY(INCR_FONT_SIZE, Qt::CTRL + Qt::Key_Plus, QObject::tr("Increase font size", "data view"))
3636
CFG_KEY_ENTRY(DECR_FONT_SIZE, Qt::CTRL + Qt::Key_Minus, QObject::tr("Decrease font size", "data view"))
3737
)

0 commit comments

Comments
 (0)