Skip to content

Commit

Permalink
Fix password reset page tab focus bug
Browse files Browse the repository at this point in the history
  • Loading branch information
onurkepenek committed Nov 16, 2022
1 parent d1d06ed commit 8095ac2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ jobs:
lightdm-hvl-greeter_${{ env.VERSION }}_amd64.deb
name: "Release ${{ env.VERSION }}"
tag_name: "v${{ env.VERSION }}"
prerelease: true
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
project(hvl-lightdm-greeter)
add_subdirectory(src)
find_package(Qt5 5.11 REQUIRED COMPONENTS Core)

install(FILES hvl-lightdm-greeter.desktop DESTINATION /usr/share/xgreeters)
install(FILES hvl-lightdm-greeter.conf DESTINATION /usr/share/lightdm/lightdm-hvl-greeter.conf.d)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.97.9
0.98.0
17 changes: 13 additions & 4 deletions src/loginform.ui
Original file line number Diff line number Diff line change
Expand Up @@ -1538,7 +1538,7 @@ QPushButton:hover{
</size>
</property>
<property name="focusPolicy">
<enum>Qt::ClickFocus</enum>
<enum>Qt::StrongFocus</enum>
</property>
<property name="text">
<string/>
Expand Down Expand Up @@ -1572,7 +1572,7 @@ QPushButton:hover{
</size>
</property>
<property name="focusPolicy">
<enum>Qt::ClickFocus</enum>
<enum>Qt::StrongFocus</enum>
</property>
<property name="text">
<string/>
Expand Down Expand Up @@ -1612,7 +1612,7 @@ QPushButton:hover{
</size>
</property>
<property name="focusPolicy">
<enum>Qt::ClickFocus</enum>
<enum>Qt::StrongFocus</enum>
</property>
<property name="text">
<string/>
Expand Down Expand Up @@ -1649,6 +1649,9 @@ QPushButton:hover{
<height>20</height>
</rect>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="text">
<string/>
</property>
Expand All @@ -1666,6 +1669,9 @@ QPushButton:hover{
<height>20</height>
</rect>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="text">
<string/>
</property>
Expand All @@ -1683,6 +1689,9 @@ QPushButton:hover{
<height>20</height>
</rect>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="text">
<string/>
</property>
Expand Down Expand Up @@ -1756,7 +1765,7 @@ QPushButton:hover{
</size>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
<enum>Qt::ClickFocus</enum>
</property>
<property name="text">
<string>Reset Password</string>
Expand Down

0 comments on commit 8095ac2

Please sign in to comment.