Rename and toggle screenshare

This commit is contained in:
Mikayla Maki 2023-06-27 09:56:41 -07:00
parent b4f9faee3b
commit 37cb202c93
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -417,7 +417,7 @@ impl CollabTitlebarItem {
let titlebar = &theme.workspace.titlebar; let titlebar = &theme.workspace.titlebar;
MouseEventHandler::<ToggleScreenSharing, Self>::new(0, cx, |state, _| { MouseEventHandler::<ToggleScreenSharing, Self>::new(0, cx, |state, _| {
let style = titlebar.call_control.style_for(state); let style = titlebar.screen_share_button.style_for(state);
Svg::new(icon) Svg::new(icon)
.with_color(style.color) .with_color(style.color)
.constrained() .constrained()

View File

@ -133,7 +133,7 @@ pub struct Titlebar {
pub sign_in_prompt: Toggleable<Interactive<ContainedText>>, pub sign_in_prompt: Toggleable<Interactive<ContainedText>>,
pub outdated_warning: ContainedText, pub outdated_warning: ContainedText,
pub share_button: Toggleable<Interactive<ContainedText>>, pub share_button: Toggleable<Interactive<ContainedText>>,
pub call_control: Interactive<IconButton>, pub screen_share_button: Toggleable<Interactive<IconButton>>,
pub toggle_contacts_button: Toggleable<Interactive<IconButton>>, pub toggle_contacts_button: Toggleable<Interactive<IconButton>>,
pub toggle_microphone_button: Toggleable<Interactive<IconButton>>, pub toggle_microphone_button: Toggleable<Interactive<IconButton>>,
pub toggle_speakers_button: Toggleable<Interactive<IconButton>>, pub toggle_speakers_button: Toggleable<Interactive<IconButton>>,

View File

@ -7,7 +7,7 @@
"build": "ts-node ./src/buildThemes.ts", "build": "ts-node ./src/buildThemes.ts",
"build-licenses": "ts-node ./src/buildLicenses.ts", "build-licenses": "ts-node ./src/buildLicenses.ts",
"build-tokens": "ts-node ./src/buildTokens.ts", "build-tokens": "ts-node ./src/buildTokens.ts",
"build-types": "cd ../crates/theme && cargo test && cd ../../styles && ts-node ./src/buildTypes.ts", "build-types": "ts-node ./src/buildTypes.ts",
"test": "vitest" "test": "vitest"
}, },
"author": "", "author": "",

View File

@ -300,7 +300,7 @@ export default function workspace(colorScheme: ColorScheme) {
cornerRadius: 6, cornerRadius: 6,
}, },
call_control: icon_button(colorScheme, { screen_share_button: icon_button(colorScheme, {
margin: { left: itemSpacing / 2 }, margin: { left: itemSpacing / 2 },
}), }),