Skip to content

Commit

Permalink
RMG-Input: improve letter casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie241 committed Jul 1, 2024
1 parent acb551d commit cd36bdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source/RMG-Input/UserInterface/OptionsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void OptionsDialog::on_changeGameboyRomButton_clicked()
void OptionsDialog::on_changeGameboySaveButton_clicked()
{
QString gameBoySave;
gameBoySave = QFileDialog::getOpenFileName(this, "", "", "Gameboy SAVE (*.sav *.ram)");
gameBoySave = QFileDialog::getOpenFileName(this, "", "", "Gameboy save (*.sav *.ram)");

if (!gameBoySave.isEmpty())
{
Expand Down
8 changes: 4 additions & 4 deletions Source/RMG-Input/UserInterface/OptionsDialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<item>
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>Gameboy SAVE</string>
<string>Gameboy save</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
Expand Down Expand Up @@ -205,21 +205,21 @@
<item>
<widget class="QCheckBox" name="removeDuplicateMappingsCheckbox">
<property name="text">
<string>Remove Duplicate Mappings</string>
<string>Remove duplicate mappings</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="filterEventsForButtonsCheckBox">
<property name="text">
<string>Filter Events Based On Joystick Type For Buttons</string>
<string>Filter events based on joystick type for buttons</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="filterEventsForAxisCheckBox">
<property name="text">
<string>Filter Events Based On Joystick Type For Axis</string>
<string>Filter events based on joystick type for axis</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion Source/RMG-Input/UserInterface/Widget/ControllerWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ void ControllerWidget::on_removeProfileButton_clicked()
{
QMessageBox messageBox(this);
messageBox.setIcon(QMessageBox::Icon::Warning);
messageBox.setText("Are you sure you want to reset the main profile?");
messageBox.setText("Are you sure you want to clear the main profile?");
messageBox.addButton(QMessageBox::Yes);
messageBox.addButton(QMessageBox::No);
if (messageBox.exec() == QMessageBox::Yes)
Expand Down

0 comments on commit cd36bdb

Please sign in to comment.