Fix bad attempt
This commit is contained in:
parent
da6b21ca6d
commit
babc5c582a
3 changed files with 0 additions and 31 deletions
|
@ -65,8 +65,6 @@ GridView {
|
||||||
property bool scrollDown: false
|
property bool scrollDown: false
|
||||||
|
|
||||||
signal keyPress(var event)
|
signal keyPress(var event)
|
||||||
signal backPress()
|
|
||||||
signal forwardPress()
|
|
||||||
|
|
||||||
cacheBuffer: Math.max(0, control.height * 1.5)
|
cacheBuffer: Math.max(0, control.height * 1.5)
|
||||||
reuseItems: true
|
reuseItems: true
|
||||||
|
@ -471,13 +469,6 @@ GridView {
|
||||||
onClicked: {
|
onClicked: {
|
||||||
clearPressState()
|
clearPressState()
|
||||||
|
|
||||||
if (mouse.buttons & Qt.BackButton) {
|
|
||||||
control.backPress()
|
|
||||||
}
|
|
||||||
if (mouse.buttons & Qt.ForwardButton){
|
|
||||||
control.forwardPress()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mouse.buttons & Qt.RightButton) {
|
if (mouse.buttons & Qt.RightButton) {
|
||||||
dirModel.openContextMenu(null, mouse.modifiers)
|
dirModel.openContextMenu(null, mouse.modifiers)
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,8 +52,6 @@ ListView {
|
||||||
property variant cachedRectangleSelection: null
|
property variant cachedRectangleSelection: null
|
||||||
|
|
||||||
signal keyPress(var event)
|
signal keyPress(var event)
|
||||||
signal backPress()
|
|
||||||
signal forwardPress()
|
|
||||||
|
|
||||||
clip: true
|
clip: true
|
||||||
cacheBuffer: width
|
cacheBuffer: width
|
||||||
|
@ -290,20 +288,12 @@ ListView {
|
||||||
dirModel.openContextMenu(null, mouse.modifiers)
|
dirModel.openContextMenu(null, mouse.modifiers)
|
||||||
mouse.accepted = true
|
mouse.accepted = true
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
clearPressState()
|
clearPressState()
|
||||||
|
|
||||||
if (mouse.buttons & Qt.BackButton) {
|
|
||||||
control.backPress()
|
|
||||||
}
|
|
||||||
if (mouse.buttons & Qt.ForwardButton){
|
|
||||||
control.forwardPress()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!hoveredItem || hoveredItem.blank || control.currentIndex === -1 || control.ctrlPressed
|
if (!hoveredItem || hoveredItem.blank || control.currentIndex === -1 || control.ctrlPressed
|
||||||
|| control.shiftPressed) {
|
|| control.shiftPressed) {
|
||||||
return
|
return
|
||||||
|
|
|
@ -337,12 +337,6 @@ Item {
|
||||||
onCountChanged: {
|
onCountChanged: {
|
||||||
_fileTips.visible = count === 0
|
_fileTips.visible = count === 0
|
||||||
}
|
}
|
||||||
onForwardPressed: {
|
|
||||||
dirModel.goForward();
|
|
||||||
}
|
|
||||||
onBackPressed:{
|
|
||||||
dirModel.goBack();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -362,12 +356,6 @@ Item {
|
||||||
onCountChanged: {
|
onCountChanged: {
|
||||||
_fileTips.visible = count === 0
|
_fileTips.visible = count === 0
|
||||||
}
|
}
|
||||||
onForwardPressed: {
|
|
||||||
dirModel.goForward();
|
|
||||||
}
|
|
||||||
onBackPressed:{
|
|
||||||
dirModel.goBack();
|
|
||||||
}
|
|
||||||
|
|
||||||
delegate: FolderListItem {}
|
delegate: FolderListItem {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue