Qt: Fix up report view a bit on macOS

This commit is contained in:
Vicki Pfau 2021-03-28 16:32:37 -07:00
parent f06b5afc7f
commit 10764f81f2
2 changed files with 7 additions and 4 deletions

View File

@ -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">

View File

@ -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