Fix typo in config group name
Summary: Quickly fix it before anyone relies on this typo. Test Plan: None. Yes, really untested. Reviewers: #plasma, graesslin, davidedmundson Reviewed By: #plasma, davidedmundson Subscribers: kwin, plasma-devel, #kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D11047
This commit is contained in:
parent
6d6576f819
commit
b1bffa4458
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ bool DrmOutput::init(drmModeConnector *connector)
|
|||
QSize physicalSize = !m_edid.physicalSize.isEmpty() ? m_edid.physicalSize : QSize(connector->mmWidth, connector->mmHeight);
|
||||
// the size might be completely borked. E.g. Samsung SyncMaster 2494HS reports 160x90 while in truth it's 520x292
|
||||
// as this information is used to calculate DPI info, it's going to result in everything being huge
|
||||
const QByteArray unknown = QByteArrayLiteral("unkown");
|
||||
const QByteArray unknown = QByteArrayLiteral("unknown");
|
||||
KConfigGroup group = kwinApp()->config()->group("EdidOverwrite").group(m_edid.eisaId.isEmpty() ? unknown : m_edid.eisaId)
|
||||
.group(m_edid.monitorName.isEmpty() ? unknown : m_edid.monitorName)
|
||||
.group(m_edid.serialNumber.isEmpty() ? unknown : m_edid.serialNumber);
|
||||
|
|
Loading…
Reference in a new issue