| Summary: | Konvi: Tab should move from Alias field to Replacement field [patch] | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Benno Schulenberg <bensberg> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | rearranges alias field to before replacement field | ||
|
Description
Benno Schulenberg
2006-11-15 23:36:16 UTC
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>
|