commit 41bb668b607210149234828dd61a9d940bdff914
parent 2948c325918e0b5e08c91ba0b6d5f1b62896d52b
Author: cfillion <cfillion@users.noreply.github.com>
Date: Sun, 29 Oct 2017 11:17:16 -0400
about: remove "About" prefix in the title bar
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/about.cpp b/src/about.cpp
@@ -170,7 +170,7 @@ void About::setDelegate(const DelegatePtr &delegate, const bool focus)
void About::setTitle(const string &what)
{
- Win32::setWindowText(handle(), String::format("About %s", what.c_str()).c_str());
+ Win32::setWindowText(handle(), what.c_str());
}
void About::setMetadata(const Metadata *metadata, const bool substitution)