Skip to content

Commit

Permalink
Fix review comments.
Browse files Browse the repository at this point in the history
Signed-off-by: alex-z <blackslayer4@gmail.com>
  • Loading branch information
allexzander committed Apr 26, 2023
1 parent 3b14043 commit 6cd3d4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gui/filedetails/NCRadioButton.qml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RadioButton {
anchors.leftMargin: Style.radioButtonCustomMarginLeftOuter
radius: root.radius
border.color: root.color
border.width: 1
border.width: Style.normalBorderWidth
Rectangle {
anchors.fill: parent
visible: root.checked
Expand Down
2 changes: 1 addition & 1 deletion src/gui/sharemanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ QSharedPointer<LinkShare> ShareManager::parseLinkShare(const QJsonObject &data)
expireDate,
note,
data.value("label").toString(),
static_cast<bool>(data.value("hide_download").toInt())));
data.value("hide_download").toInt() == 1));
}

SharePtr ShareManager::parseShare(const QJsonObject &data) const
Expand Down

0 comments on commit 6cd3d4a

Please sign in to comment.