macos gui: mark unused fields in widgets

This commit is contained in:
Alex Janka 2024-06-16 11:52:44 +10:00
parent 4f10118a9a
commit 24bcdd1bb6

View file

@ -205,7 +205,7 @@ pub struct PickerView<T>
where
T: ToString,
{
pub view: View,
pub _view: View,
pub select: Select,
pub title: Label,
_p: PhantomData<T>,
@ -243,7 +243,7 @@ where
]);
Self {
view,
_view: view,
select,
title,
_p: PhantomData,