mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Use Qt standard shortcuts for printing, bold, italic, and underline.
In theory these will automatically get localized, since they're using Qt's official enums.
This commit is contained in:
parent
c4d16b7169
commit
94e39c2733
@ -122,6 +122,10 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
||||
qDebug() << "Creating new Daily object";
|
||||
ui->setupUi(this);
|
||||
|
||||
ui->JournalNotesBold->setShortcut(QKeySequence::Bold);
|
||||
ui->JournalNotesItalic->setShortcut(QKeySequence::Italic);
|
||||
ui->JournalNotesUnderline->setShortcut(QKeySequence::Underline);
|
||||
|
||||
// Remove Incomplete Extras Tab
|
||||
//ui->tabWidget->removeTab(3);
|
||||
|
||||
|
@ -1049,9 +1049,6 @@ QToolButton:pressed {
|
||||
<property name="text">
|
||||
<string> i </string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string notr="true">Ctrl+I</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -1065,9 +1062,6 @@ QToolButton:pressed {
|
||||
<property name="text">
|
||||
<string>B</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string notr="true">Ctrl+B</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -1080,9 +1074,6 @@ QToolButton:pressed {
|
||||
<property name="text">
|
||||
<string>u</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string notr="true">Ctrl+U</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
|
@ -132,6 +132,7 @@ void MainWindow::SetupGUI()
|
||||
ui->action_About->setMenuRole(QAction::AboutRole);
|
||||
ui->action_Preferences->setMenuRole(QAction::PreferencesRole);
|
||||
#endif
|
||||
ui->actionPrint_Report->setShortcuts(QKeySequence::Print);
|
||||
|
||||
ui->actionLine_Cursor->setChecked(AppSetting->lineCursorMode());
|
||||
ui->actionPie_Chart->setChecked(AppSetting->showPieChart());
|
||||
|
@ -3248,7 +3248,7 @@ p, li { white-space: pre-wrap; }
|
||||
<string>Show Pie Chart on Daily page</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+P</string>
|
||||
<string>F3</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_Standard_Graph_Order">
|
||||
|
Loading…
Reference in New Issue
Block a user