Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
wengxt committed Apr 22, 2024
1 parent 7a991c7 commit 067e4c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")
You must delete them, or cmake will refuse to work.")
endif()

project(fcitx5-configtool VERSION 5.1.4)
project(fcitx5-configtool VERSION 5.1.5)

option(USE_QT6 "Build with Qt6" On)

Expand Down
3 changes: 1 addition & 2 deletions src/migrator/app/taskpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ class TaskModel : public QAbstractListModel {
}

bool allSelected() const {
return availableSize_ != 0 &&
availableSize_ == selected_.size();
return availableSize_ != 0 && availableSize_ == selected_.size();
}

bool someSelected() const { return !selected_.isEmpty(); }
Expand Down

0 comments on commit 067e4c9

Please sign in to comment.