Skip to content

Commit 8095ac2

Browse files
committed
Fix password reset page tab focus bug
1 parent d1d06ed commit 8095ac2

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ jobs:
3434
lightdm-hvl-greeter_${{ env.VERSION }}_amd64.deb
3535
name: "Release ${{ env.VERSION }}"
3636
tag_name: "v${{ env.VERSION }}"
37-
prerelease: true

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
22
project(hvl-lightdm-greeter)
33
add_subdirectory(src)
4-
find_package(Qt5 5.11 REQUIRED COMPONENTS Core)
54

65
install(FILES hvl-lightdm-greeter.desktop DESTINATION /usr/share/xgreeters)
76
install(FILES hvl-lightdm-greeter.conf DESTINATION /usr/share/lightdm/lightdm-hvl-greeter.conf.d)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.97.9
1+
0.98.0

src/loginform.ui

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ QPushButton:hover{
15381538
</size>
15391539
</property>
15401540
<property name="focusPolicy">
1541-
<enum>Qt::ClickFocus</enum>
1541+
<enum>Qt::StrongFocus</enum>
15421542
</property>
15431543
<property name="text">
15441544
<string/>
@@ -1572,7 +1572,7 @@ QPushButton:hover{
15721572
</size>
15731573
</property>
15741574
<property name="focusPolicy">
1575-
<enum>Qt::ClickFocus</enum>
1575+
<enum>Qt::StrongFocus</enum>
15761576
</property>
15771577
<property name="text">
15781578
<string/>
@@ -1612,7 +1612,7 @@ QPushButton:hover{
16121612
</size>
16131613
</property>
16141614
<property name="focusPolicy">
1615-
<enum>Qt::ClickFocus</enum>
1615+
<enum>Qt::StrongFocus</enum>
16161616
</property>
16171617
<property name="text">
16181618
<string/>
@@ -1649,6 +1649,9 @@ QPushButton:hover{
16491649
<height>20</height>
16501650
</rect>
16511651
</property>
1652+
<property name="focusPolicy">
1653+
<enum>Qt::NoFocus</enum>
1654+
</property>
16521655
<property name="text">
16531656
<string/>
16541657
</property>
@@ -1666,6 +1669,9 @@ QPushButton:hover{
16661669
<height>20</height>
16671670
</rect>
16681671
</property>
1672+
<property name="focusPolicy">
1673+
<enum>Qt::NoFocus</enum>
1674+
</property>
16691675
<property name="text">
16701676
<string/>
16711677
</property>
@@ -1683,6 +1689,9 @@ QPushButton:hover{
16831689
<height>20</height>
16841690
</rect>
16851691
</property>
1692+
<property name="focusPolicy">
1693+
<enum>Qt::NoFocus</enum>
1694+
</property>
16861695
<property name="text">
16871696
<string/>
16881697
</property>
@@ -1756,7 +1765,7 @@ QPushButton:hover{
17561765
</size>
17571766
</property>
17581767
<property name="focusPolicy">
1759-
<enum>Qt::NoFocus</enum>
1768+
<enum>Qt::ClickFocus</enum>
17601769
</property>
17611770
<property name="text">
17621771
<string>Reset Password</string>

0 commit comments

Comments
 (0)