diff options
| author | skidau <skidau@gmail.com> | 2014-09-25 13:49:39 +1000 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2014-09-25 13:49:39 +1000 |
| commit | c41f76e774e3d123491cb5bb2d3a9d580df36d91 (patch) | |
| tree | 14d06cb94a2ff81c08f761b60fa55e104ea1f7ad /Source/Core | |
| parent | 6d064b0406bc5e93c5177970d9a5fb5e735bb18c (diff) | |
| parent | 874f5eb1adc2f008452bf2ff767a4847c950d611 (diff) | |
Merge pull request #1148 from lioncash/typo
ISOProperties: Fix typo in the tooltip for manual config editing.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/ISOProperties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/ISOProperties.cpp b/Source/Core/DolphinWX/ISOProperties.cpp index 6d6d590915..dde0706275 100644 --- a/Source/Core/DolphinWX/ISOProperties.cpp +++ b/Source/Core/DolphinWX/ISOProperties.cpp @@ -363,7 +363,7 @@ long CISOProperties::GetElementStyle(const char* section, const char* key) void CISOProperties::CreateGUIControls(bool IsWad) { wxButton* const EditConfig = new wxButton(this, ID_EDITCONFIG, _("Edit Config")); - EditConfig->SetToolTip(_("This will let you Manually Edit the INI config file")); + EditConfig->SetToolTip(_("This will let you manually edit the INI config file.")); wxButton* const EditConfigDefault = new wxButton(this, ID_SHOWDEFAULTCONFIG, _("Show Defaults")); EditConfigDefault->SetToolTip(_("Opens the default (read-only) configuration for this game in an external text editor.")); |
