Skip to content

Commit

Permalink
Merge branch 'main' into tray-icon
Browse files Browse the repository at this point in the history
  • Loading branch information
PolisanTheEasyNick authored Oct 15, 2024
2 parents 1416750 + 8993b0d commit a7ae0eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ function init() {
// WidgetLayering (Vencord Added): Fix DevTools context menus https://github.com/electron/electron/issues/38790
disabledFeatures.push("WinRetrieveSuggestionsOnlyOnDemand", "HardwareMediaKeyHandling", "MediaSessionService");

// Support TTS on Linux using speech-dispatcher
app.commandLine.appendSwitch("enable-speech-dispatcher");

app.commandLine.appendSwitch("enable-features", [...new Set(enabledFeatures)].filter(Boolean).join(","));
app.commandLine.appendSwitch("disable-features", [...new Set(disabledFeatures)].filter(Boolean).join(","));

Expand Down
6 changes: 3 additions & 3 deletions src/renderer/components/screenSharePicker.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,16 @@

.vcd-screen-picker-grid label {
overflow: hidden;
padding: 4px 0px;
padding: 8px;
cursor: pointer;
display: grid;
justify-items: center;
}

.vcd-screen-picker-grid label:hover {
outline: 2px solid var(--brand-500);
}


.vcd-screen-picker-grid div {
white-space: nowrap;
text-overflow: ellipsis;
Expand Down Expand Up @@ -101,7 +102,6 @@
.vcd-screen-picker-quality {
display: flex;
gap: 1em;

margin-bottom: 0.5em;
}

Expand Down

0 comments on commit a7ae0eb

Please sign in to comment.