#include "bottombarcontentscontainer.h"
#include "backgroundcolorhelper.h"
-#include "global.h"
#include <QGridLayout>
#include <QResizeEvent>
#include <QScrollArea>
#include <QStyle>
-#include <QtGlobal>
#include <QTimer>
using namespace SelectionMode;
}
setVisibleInternal(visible, WithAnimation);
});
- connect(m_contentsContainer, &BottomBarContentsContainer::leaveSelectionModeRequested, this, &BottomBar::leaveSelectionModeRequested);
+ connect(m_contentsContainer, &BottomBarContentsContainer::selectionModeLeavingRequested, this, &BottomBar::selectionModeLeavingRequested);
BackgroundColorHelper::instance()->controlBackgroundColor(this);
}
switch (contents()) {
case CopyToOtherViewContents:
case MoveToOtherViewContents:
- Q_EMIT leaveSelectionModeRequested();
+ Q_EMIT selectionModeLeavingRequested();
default:
return;
}