No clear selection when dragging text

pull/2/head
reionwong 4 years ago
parent 3bbe700f96
commit ca444e5775

@ -2052,11 +2052,12 @@ void TerminalDisplay::mouseMoveEvent(QMouseEvent* ev)
if ( ev->x() > dragInfo.start.x() + distance || ev->x() < dragInfo.start.x() - distance ||
ev->y() > dragInfo.start.y() + distance || ev->y() < dragInfo.start.y() - distance)
{
// we've left the drag square, we can start a real drag operation now
emit isBusySelecting(false); // Ok.. we can breath again.
// we've left the drag square, we can start a real drag operation now
emit isBusySelecting(false); // Ok.. we can breath again.
_screenWindow->clearSelection();
doDrag();
// Reion: Don't clear selection.
// _screenWindow->clearSelection();
doDrag();
}
return;
}

@ -34,7 +34,7 @@ FishUI.Window {
height: settings.height
title: currentItem && currentItem.terminal ? currentItem.terminal.session.title : ""
header.height: 40 + FishUI.Units.smallSpacing
header.height: 46
property alias currentItem: _view.currentItem
readonly property QMLTermWidget currentTerminal: currentItem.terminal
@ -48,8 +48,10 @@ FishUI.Window {
}
onClosing: {
settings.width = root.width
settings.height = root.height
if (!root.isMaximized) {
settings.width = root.width
settings.height = root.height
}
// Exit prompt.
for (var i = 0; i < tabsModel.count; ++i) {

Loading…
Cancel
Save