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>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>855</width>
|
||||
<height>474</height>
|
||||
<width>914</width>
|
||||
<height>533</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Generate Bug Report</string>
|
||||
</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">
|
||||
<widget class="QListWidget" name="fileList">
|
||||
<property name="enabled">
|
||||
|
|
|
@ -1212,11 +1212,14 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
m_platformActions.insert(mPLATFORM_GBA, dolphin);
|
||||
#endif
|
||||
|
||||
m_actions.addSeparator("file");
|
||||
|
||||
m_actions.addAction(tr("Report bug..."), "bugReport", openTView<ReportView>(), "file");
|
||||
|
||||
#ifndef Q_OS_MAC
|
||||
m_actions.addSeparator("file");
|
||||
#endif
|
||||
|
||||
m_actions.addAction(tr("Report bug..."), "bugReport", openTView<ReportView>(), "file");
|
||||
m_actions.addAction(tr("About..."), "about", openTView<AboutScreen>(), "file");
|
||||
|
||||
#ifndef Q_OS_MAC
|
||||
|
|
Loading…
Reference in New Issue