Version: 1.0.1 (using KDE KDE 3.5.5) Installed from: Gentoo Packages Compiler: gcc-3.4.6 OS: Linux When configuring Konversation and adding a New command alias, hitting the Tab key should move the cursor from the Alias field to the Replacement field. Attached patch rearranges the ui lines to achieve this.
Created attachment 18577 [details] rearranges alias field to before replacement field
SVN commit 605267 by hein: Fix tabbing order in command aliases prefs page. BUG:137432 M +10 -10 alias_preferencesui.ui --- trunk/extragear/network/konversation/src/alias_preferencesui.ui #605266:605267 @@ -27,39 +27,39 @@ <property name="name"> <cstring>unnamed</cstring> </property> - <widget class="QLabel" row="1" column="0"> + <widget class="QLabel" row="0" column="0"> <property name="name"> - <cstring>replacementLabel</cstring> + <cstring>aliasLabel</cstring> </property> <property name="enabled"> <bool>false</bool> </property> <property name="text"> - <string>Replacement:</string> + <string>Alias:</string> </property> </widget> - <widget class="QLabel" row="0" column="0"> + <widget class="QLabel" row="1" column="0"> <property name="name"> - <cstring>aliasLabel</cstring> + <cstring>replacementLabel</cstring> </property> <property name="enabled"> <bool>false</bool> </property> <property name="text"> - <string>Alias:</string> + <string>Replacement:</string> </property> </widget> - <widget class="KLineEdit" row="1" column="1"> + <widget class="KLineEdit" row="0" column="1"> <property name="name"> - <cstring>replacementInput</cstring> + <cstring>aliasInput</cstring> </property> <property name="enabled"> <bool>false</bool> </property> </widget> - <widget class="KLineEdit" row="0" column="1"> + <widget class="KLineEdit" row="1" column="1"> <property name="name"> - <cstring>aliasInput</cstring> + <cstring>replacementInput</cstring> </property> <property name="enabled"> <bool>false</bool>