<table><tr><td style="">Zren added a comment.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D19230">View Revision</a></tr></table><br /><div><div><p><a href="https://doc.qt.io/qt-5/qt.html#CheckState-enum" class="remarkup-link" target="_blank" rel="noreferrer">https://doc.qt.io/qt-5/qt.html#CheckState-enum</a></p>

<p><tt style="background: #ebebeb; font-size: 13px;">i18n("Use locale default")</tt> should be in the middle (<tt style="background: #ebebeb; font-size: 13px;">currentIndex=1</tt>). 12h should be <tt style="background: #ebebeb; font-size: 13px;">currentIndex=0</tt>, and 24h should be <tt style="background: #ebebeb; font-size: 13px;">currentIndex=2</tt></p>

<p><a href="https://github.com/KDE/plasma-workspace/blob/master/applets/digital-clock/package/contents/config/main.xml#L64" class="remarkup-link" target="_blank" rel="noreferrer">https://github.com/KDE/plasma-workspace/blob/master/applets/digital-clock/package/contents/config/main.xml#L64</a></p>

<p>People upgrading from 5.15 will have either "force 12h" (<tt style="background: #ebebeb; font-size: 13px;">0</tt>) or "force 24h" (<tt style="background: #ebebeb; font-size: 13px;">2</tt>) serialized to file. KConfig doesn't serialize the default values to file (<tt style="background: #ebebeb; font-size: 13px;">1</tt>).</p>

<p>Make sure to test changing <tt style="background: #ebebeb; font-size: 13px;">contents/config/main.xml</tt> to simulate "loading" a different config value from file.</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);"><entry name="use24hFormat" type="UInt">
      <label>Force the clock to use 12/24 hour time, instead of following the user locale.</label>
      <default>1</default>
</entry></pre></div>

<p>with <tt style="background: #ebebeb; font-size: 13px;">0</tt> and <tt style="background: #ebebeb; font-size: 13px;">2</tt> to make sure it selects 12h/24h when the config opens.</p>

<p>Right now the config should be selecting 12h (<tt style="background: #ebebeb; font-size: 13px;">currentIndex=1</tt>), however <tt style="background: #ebebeb; font-size: 13px;">currentIndex</tt> is the default <tt style="background: #ebebeb; font-size: 13px;">currentIndex=0</tt> as mentioned in the Qt Docs.</p>

<ul class="remarkup-list">
<li class="remarkup-list-item"><a href="https://doc.qt.io/qt-5.11/qml-qtquick-controls2-combobox.html#currentIndex-prop" class="remarkup-link" target="_blank" rel="noreferrer">https://doc.qt.io/qt-5.11/qml-qtquick-controls2-combobox.html#currentIndex-prop</a></li>
</ul>

<p>If you really want the "locale default" at the top, you'll need to use the following pattern for the model</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">textRole: "label"
model: [
  { label: i18n("Use locale default"), value: 1 },
  { label: i18n("12-hour"), value: 0 },
  { label: i18n("24-hour"), value: 2 },
]
Component.onCompleted: {
  // select index with value == cfg_use24hFormat
  // watch cfg_use24hFormat for changes
}</pre></div>



<ul class="remarkup-list">
<li class="remarkup-list-item"><a href="https://doc.qt.io/qt-5.11/qml-qtquick-controls2-combobox.html#model-prop" class="remarkup-link" target="_blank" rel="noreferrer">https://doc.qt.io/qt-5.11/qml-qtquick-controls2-combobox.html#model-prop</a></li>
<li class="remarkup-list-item"><a href="https://doc.qt.io/qt-5.11/qml-qtquick-controls2-combobox.html#textRole-prop" class="remarkup-link" target="_blank" rel="noreferrer">https://doc.qt.io/qt-5.11/qml-qtquick-controls2-combobox.html#textRole-prop</a></li>
</ul></div></div><br /><div><strong>REPOSITORY</strong><div><div>R120 Plasma Workspace</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D19230">https://phabricator.kde.org/D19230</a></div></div><br /><div><strong>To: </strong>ngraham, Plasma, Zren, VDG<br /><strong>Cc: </strong>plasma-devel, jraleigh, GB_2, ragreen, Pitel, ZrenBot, lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, mart<br /></div>