mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-26 05:18:11 +03:00
Finish 1.4.64
This commit is contained in:
commit
7c341c374d
@ -217,16 +217,16 @@ void ReportDesignWindow::createActions()
|
|||||||
m_aboutAction->setIcon(QIcon(":/report/images/copyright"));
|
m_aboutAction->setIcon(QIcon(":/report/images/copyright"));
|
||||||
connect(m_aboutAction,SIGNAL(triggered()),this,SLOT(slotShowAbout()));
|
connect(m_aboutAction,SIGNAL(triggered()),this,SLOT(slotShowAbout()));
|
||||||
|
|
||||||
m_hideLeftPanel = new QAction(tr("Hide left panel"),this);
|
m_hideLeftPanel = new QAction(tr("Hide left panel | Alt+L"),this);
|
||||||
m_hideLeftPanel->setCheckable(true);
|
m_hideLeftPanel->setCheckable(true);
|
||||||
// m_hideLeftPanel->setChecked(true);
|
|
||||||
m_hideLeftPanel->setIcon(QIcon(":/report/images/hideLeftPanel"));
|
m_hideLeftPanel->setIcon(QIcon(":/report/images/hideLeftPanel"));
|
||||||
|
m_hideLeftPanel->setShortcut(QKeySequence(Qt::ALT + Qt::Key_L));
|
||||||
connect(m_hideLeftPanel,SIGNAL(toggled(bool)), this, SLOT(slotHideLeftPanel(bool)));
|
connect(m_hideLeftPanel,SIGNAL(toggled(bool)), this, SLOT(slotHideLeftPanel(bool)));
|
||||||
|
|
||||||
m_hideRightPanel = new QAction(tr("Hide right panel"),this);
|
m_hideRightPanel = new QAction(tr("Hide right panel | Alt+R"),this);
|
||||||
m_hideRightPanel->setCheckable(true);
|
m_hideRightPanel->setCheckable(true);
|
||||||
// m_hideRightPanel->setChecked(true);
|
|
||||||
m_hideRightPanel->setIcon(QIcon(":/report/images/hideRightPanel"));
|
m_hideRightPanel->setIcon(QIcon(":/report/images/hideRightPanel"));
|
||||||
|
m_hideRightPanel->setShortcut(QKeySequence(Qt::ALT + Qt::Key_R));
|
||||||
connect(m_hideRightPanel,SIGNAL(toggled(bool)), this, SLOT(slotHideRightPanel(bool)));
|
connect(m_hideRightPanel,SIGNAL(toggled(bool)), this, SLOT(slotHideRightPanel(bool)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user