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
|
||||
|
||||
signal keyPress(var event)
|
||||
signal backPress()
|
||||
signal forwardPress()
|
||||
|
||||
cacheBuffer: Math.max(0, control.height * 1.5)
|
||||
reuseItems: true
|
||||
|
@ -471,13 +469,6 @@ GridView {
|
|||
onClicked: {
|
||||
clearPressState()
|
||||
|
||||
if (mouse.buttons & Qt.BackButton) {
|
||||
control.backPress()
|
||||
}
|
||||
if (mouse.buttons & Qt.ForwardButton){
|
||||
control.forwardPress()
|
||||
}
|
||||
|
||||
if (mouse.buttons & Qt.RightButton) {
|
||||
dirModel.openContextMenu(null, mouse.modifiers)
|
||||
}
|
||||
|
|
|
@ -52,8 +52,6 @@ ListView {
|
|||
property variant cachedRectangleSelection: null
|
||||
|
||||
signal keyPress(var event)
|
||||
signal backPress()
|
||||
signal forwardPress()
|
||||
|
||||
clip: true
|
||||
cacheBuffer: width
|
||||
|
@ -290,20 +288,12 @@ ListView {
|
|||
dirModel.openContextMenu(null, mouse.modifiers)
|
||||
mouse.accepted = true
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
onClicked: {
|
||||
clearPressState()
|
||||
|
||||
if (mouse.buttons & Qt.BackButton) {
|
||||
control.backPress()
|
||||
}
|
||||
if (mouse.buttons & Qt.ForwardButton){
|
||||
control.forwardPress()
|
||||
}
|
||||
|
||||
if (!hoveredItem || hoveredItem.blank || control.currentIndex === -1 || control.ctrlPressed
|
||||
|| control.shiftPressed) {
|
||||
return
|
||||
|
|
|
@ -337,12 +337,6 @@ Item {
|
|||
onCountChanged: {
|
||||
_fileTips.visible = count === 0
|
||||
}
|
||||
onForwardPressed: {
|
||||
dirModel.goForward();
|
||||
}
|
||||
onBackPressed:{
|
||||
dirModel.goBack();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -362,12 +356,6 @@ Item {
|
|||
onCountChanged: {
|
||||
_fileTips.visible = count === 0
|
||||
}
|
||||
onForwardPressed: {
|
||||
dirModel.goForward();
|
||||
}
|
||||
onBackPressed:{
|
||||
dirModel.goBack();
|
||||
}
|
||||
|
||||
delegate: FolderListItem {}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue