Skip to content

Commit cc57737

Browse files
committed
A few small changes
1 parent 157f647 commit cc57737

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

features/video-recorder/data.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"title": "Video Recorder",
3-
"description": "Record videos of Scratch projects.",
2+
"title": "Record Stage",
3+
"description": "Allows you to record the stage for projects while in the editor.",
44
"credits": [
55
{
66
"username": "blob2763",
@@ -13,7 +13,6 @@
1313
],
1414
"type": ["Editor"],
1515
"tags": ["New", "Featured"],
16-
"dynamic": true,
1716
"scripts": [
1817
{
1918
"file": "video-recorder.js",

features/video-recorder/style.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@
1919
.STE-ReactModalPortal .video-format-select {
2020
width: 100%;
2121
}
22+

features/video-recorder/video-recorder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export default async function ({ feature, console }) {
2727
if (row.querySelector(".ste-video-recorder-open")) return;
2828
openPopup = document.createElement("div");
2929
openPopup.className = "menu-bar_menu-bar-item_oLDa- menu-bar_hoverable_c6WFB";
30+
openPopup.style.padding = "0 0.75rem"
3031
let rem = document.createElement("div");
3132
rem.textContent = "Record Video";
3233
openPopup.append(rem);

0 commit comments

Comments
 (0)