You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: linux-rust/src/ui/airpods.rs
+21-20Lines changed: 21 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ pub fn airpods_view<'a>(
24
24
) -> iced::widget::Container<'a,Message>{
25
25
let mac = mac.to_string();
26
26
// order: name, noise control, press and hold config, call controls (not sure if why it might be needed, adding it just in case), audio (personalized volume, conversational awareness, adaptive audio slider), connection settings, microphone, head gestures (not adding this), off listening mode, device information
27
+
27
28
let aacp_manager_for_rename = aacp_manager.clone();
28
29
let rename_input = container(
29
30
row![
@@ -221,14 +222,13 @@ pub fn airpods_view<'a>(
221
222
column![
222
223
text("Personalized Volume").size(16),
223
224
text("Adjusts the volume in response to your environment.").size(12).style(
let aacp_manager = aacp_manager_conv_detect.clone();
@@ -299,6 +299,7 @@ pub fn airpods_view<'a>(
299
299
.size(20)
300
300
]
301
301
.align_y(Center)
302
+
.spacing(8)
302
303
}
303
304
]
304
305
.spacing(4)
@@ -328,15 +329,14 @@ pub fn airpods_view<'a>(
328
329
container(row![
329
330
column![
330
331
text("Off Listening Mode").size(16),
331
-
text("When this is on, AIrPods listening modes will include an Off option. Loud sound levels are not reduced when listening mode is set to Off.").size(12).style(
332
+
text("When this is on, AirPods listening modes will include an Off option. Loud sound levels are not reduced when listening mode is set to Off.").size(12).style(
0 commit comments