nice pic iszing
This commit is contained in:
@@ -30,7 +30,7 @@ export const DimensionPresets = {
|
|||||||
// todo: typically just send whatever dimensions are needed
|
// todo: typically just send whatever dimensions are needed
|
||||||
overlayOnlyMode: {
|
overlayOnlyMode: {
|
||||||
height: 800,
|
height: 800,
|
||||||
width: 400,
|
width: 325,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -44,11 +44,13 @@ const createWindow = (): void => {
|
|||||||
|
|
||||||
transparent: true,
|
transparent: true,
|
||||||
|
|
||||||
|
backgroundColor: "#00000000",
|
||||||
|
|
||||||
frame: false,
|
frame: false,
|
||||||
roundedCorners: false,
|
roundedCorners: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
browserWindow.setBackgroundColor("#00000000");
|
// browserWindow.setBackgroundColor("#00000000");
|
||||||
|
|
||||||
// browserWindow.setIgnoreMouseEvents(true);
|
// browserWindow.setIgnoreMouseEvents(true);
|
||||||
// browserWindow.setFocusable(true);
|
// browserWindow.setFocusable(true);
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
export default function Overlay() {
|
export default function Overlay() {
|
||||||
|
//todo: change window size based on how many streams are being shown
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col bg-transparent">this is the overlay</div>
|
<div className="flex flex-col bg-transparent">
|
||||||
|
<img
|
||||||
|
className="w w-fit"
|
||||||
|
src="https://miro.medium.com/max/1200/1*hONz6Wttkst4FUp_0hwQJQ.png"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user