mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-25 23:05:58 +01:00
parent
0d6eae0523
commit
6d67b84469
2 changed files with 4 additions and 2 deletions
|
@ -2666,6 +2666,7 @@ void CCompositor::arrangeMonitors() {
|
|||
maxXOffsetLeft = newPosition.x;
|
||||
break;
|
||||
case eAutoDirs::DIR_AUTO_RIGHT:
|
||||
case eAutoDirs::DIR_AUTO_NONE:
|
||||
newPosition.x = maxXOffsetRight;
|
||||
maxXOffsetRight += m->vecSize.x;
|
||||
break;
|
||||
|
|
|
@ -13,7 +13,8 @@
|
|||
#include "signal/Signal.hpp"
|
||||
|
||||
// Enum for the different types of auto directions, e.g. auto-left, auto-up.
|
||||
enum class eAutoDirs {
|
||||
enum eAutoDirs {
|
||||
DIR_AUTO_NONE = 0, /* None will be treated as right. */
|
||||
DIR_AUTO_UP,
|
||||
DIR_AUTO_DOWN,
|
||||
DIR_AUTO_LEFT,
|
||||
|
@ -21,7 +22,7 @@ enum class eAutoDirs {
|
|||
};
|
||||
|
||||
struct SMonitorRule {
|
||||
eAutoDirs autoDir;
|
||||
eAutoDirs autoDir = DIR_AUTO_NONE;
|
||||
std::string name = "";
|
||||
Vector2D resolution = Vector2D(1280, 720);
|
||||
Vector2D offset = Vector2D(0, 0);
|
||||
|
|
Loading…
Reference in a new issue