File 2000-numeral-system-view.patch of Package kcalc
diff --git a/kcalc.cpp b/kcalc.cpp
index 1825f094250b4429251e47141012d32ec900a290..ad83e0135df70ce2f951e93e5098e1de86987914 100644
--- a/kcalc.cpp
+++ b/kcalc.cpp
@@ -1434,11 +1434,9 @@ void KCalculator::slotInputChanged()
return;
} else if (m_parsingResult == KCalcParser::ParsingResult::SUCCESS_SINGLE_KNUMBER) {
updateDisplay(UPDATE_CLEAR);
- if (base_mode_) {
- slotBaseModeAmountChanged(core.getResult());
- slotUpdateBitset(core.getResult());
- mBitset->setReadOnly(false);
- }
+ slotBaseModeAmountChanged(core.getResult());
+ slotUpdateBitset(core.getResult());
+ mBitset->setReadOnly(false);
return;
} else {
this->commit_Result_(false);
diff --git a/kcalc_numeralsystem_view.cpp b/kcalc_numeralsystem_view.cpp
index 4a854be0e1a78cec9713fbd2163baed129e21387..24d029fd34cdc905e329743dfb30d239e844d2ca 100644
--- a/kcalc_numeralsystem_view.cpp
+++ b/kcalc_numeralsystem_view.cpp
@@ -47,7 +47,7 @@ void KCalcNumeralSystemLabel::setNumber(quint64 number, int base)
m_textLabel->setText(QString::number(number, base).toUpper());
m_textLabel->setAccessibleName(m_textLabel->fullText());
- m_numeralSystemLabel->setText(QStringLiteral("<sub><b>%1</b></sub>").arg(base));
+ m_numeralSystemLabel->setText(QStringLiteral("<small><b>%1</b></small>").arg(base));
}
void KCalcNumeralSystemLabel::changeEvent(QEvent *event)