Skip to content

Commit

Permalink
fix: missing border for FlolderPopup in windowed
Browse files Browse the repository at this point in the history
  • Loading branch information
18202781743 committed May 15, 2024
1 parent d8c7b1f commit e654bfe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qml/FolderGridViewPopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import org.deepin.dtk 1.0
import org.deepin.dtk.style 1.0 as DStyle

import org.deepin.launchpad 1.0
import org.deepin.launchpad.models 1.0
Expand Down Expand Up @@ -276,7 +277,7 @@ Popup {
normalDark: Qt.rgba(1.0, 1.0, 1.0, 0.2)
}
dropShadowColor: null
outsideBorderColor: null
insideBorderColor: null
outsideBorderColor: isWindowedMode ? DStyle.Style.floatingPanel.outsideBorder : null
insideBorderColor: isWindowedMode ? DStyle.Style.floatingPanel.insideBorder : null
}
}

0 comments on commit e654bfe

Please sign in to comment.