Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DolphinQt2: Make logging strings more like in DolphinWX #5877

Merged
merged 1 commit into from
Aug 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt2/Config/LoggerWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ void LoggerWidget::CreateWidgets()
// Log
m_tab_log = new QWidget;
m_log_text = new QTextEdit;
m_log_wrap = new QCheckBox(tr("Wrap Text"));
m_log_wrap = new QCheckBox(tr("Word Wrap"));
m_log_font = new QComboBox;
m_log_clear = new QPushButton(tr("Clear"));

Expand Down
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt2/MenuBar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ void MenuBar::UpdateStateSlotMenu()
void MenuBar::AddViewMenu()
{
QMenu* view_menu = addMenu(tr("&View"));
QAction* show_log = view_menu->addAction(tr("Show Log"));
QAction* show_log = view_menu->addAction(tr("Show &Log"));
show_log->setCheckable(true);
show_log->setChecked(Settings::Instance().IsLogVisible());

connect(show_log, &QAction::toggled, &Settings::Instance(), &Settings::SetLogVisible);

QAction* show_log_config = view_menu->addAction(tr("Show Log Configuration"));
QAction* show_log_config = view_menu->addAction(tr("Show Log &Configuration"));
show_log_config->setCheckable(true);
show_log_config->setChecked(Settings::Instance().IsLogConfigVisible());

Expand Down