From 874f5eb1adc2f008452bf2ff767a4847c950d611 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 22 Sep 2014 13:45:28 -0400 Subject: [PATCH] ISOProperties: Fix typo in the tooltip for manual config editing. --- Source/Core/DolphinWX/ISOProperties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."));