mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix up report view a bit on macOS
This commit is contained in:
parent
f06b5afc7f
commit
10764f81f2
|
@ -6,14 +6,14 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>855</width>
|
<width>914</width>
|
||||||
<height>474</height>
|
<height>533</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Generate Bug Report</string>
|
<string>Generate Bug Report</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout" columnstretch="3,2,7,0">
|
<layout class="QGridLayout" name="gridLayout" columnstretch="3,2,7">
|
||||||
<item row="1" column="1" rowspan="3">
|
<item row="1" column="1" rowspan="3">
|
||||||
<widget class="QListWidget" name="fileList">
|
<widget class="QListWidget" name="fileList">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
|
|
|
@ -1212,11 +1212,14 @@ void Window::setupMenu(QMenuBar* menubar) {
|
||||||
m_platformActions.insert(mPLATFORM_GBA, dolphin);
|
m_platformActions.insert(mPLATFORM_GBA, dolphin);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
m_actions.addSeparator("file");
|
||||||
|
|
||||||
|
m_actions.addAction(tr("Report bug..."), "bugReport", openTView<ReportView>(), "file");
|
||||||
|
|
||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
m_actions.addSeparator("file");
|
m_actions.addSeparator("file");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_actions.addAction(tr("Report bug..."), "bugReport", openTView<ReportView>(), "file");
|
|
||||||
m_actions.addAction(tr("About..."), "about", openTView<AboutScreen>(), "file");
|
m_actions.addAction(tr("About..."), "about", openTView<AboutScreen>(), "file");
|
||||||
|
|
||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
|
|
Loading…
Reference in New Issue