Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,7 @@ async function showScreenShareWindow(sourceName: string | undefined) {
height: 44,
maximizable: false,
minimizable: false,
resizable: false,
resizable: true,
show: false,
title: getResolvedMessagesLocale().i18n('icu:screenShareWindow'),
titleBarStyle: nonMainTitleBarStyle,
Expand Down Expand Up @@ -1357,7 +1357,7 @@ async function showAbout() {
const options = {
width: 500,
height: 500,
resizable: false,
resizable: true,
title: getResolvedMessagesLocale().i18n('icu:aboutSignalDesktop'),
titleBarStyle: nonMainTitleBarStyle,
autoHideMenuBar: true,
Expand Down Expand Up @@ -1405,7 +1405,7 @@ async function showSettingsWindow() {
width: 700,
height: 700,
frame: true,
resizable: false,
resizable: true,
title: getResolvedMessagesLocale().i18n('icu:signalDesktopPreferences'),
titleBarStyle: mainTitleBarStyle,
autoHideMenuBar: true,
Expand Down Expand Up @@ -1497,7 +1497,7 @@ async function showDebugLogWindow() {
const options: Electron.BrowserWindowConstructorOptions = {
width: 700,
height: 500,
resizable: false,
resizable: true,
title: getResolvedMessagesLocale().i18n('icu:debugLog'),
titleBarStyle: nonMainTitleBarStyle,
autoHideMenuBar: true,
Expand Down
4 changes: 3 additions & 1 deletion stylesheets/components/Preferences.scss
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
content: '';
display: block;
height: 22px;
margin-inline: 18px 14px;
margin-inline: 6px 6px;
width: 22px;
}

Expand Down Expand Up @@ -179,6 +179,7 @@
&__control {
align-items: center;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
min-height: 48px;
padding-block: 4px;
Expand All @@ -194,6 +195,7 @@
&--key {
flex-grow: 1;
padding-inline-end: 20px;
min-width: 22ch;
}

&--value {
Expand Down