egui 0.33.3

An easy-to-use immediate mode GUI that runs on both web and native
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![expect(deprecated, clippy::new_ret_no_self)]

use crate::WidgetText;

#[deprecated = "Use `Button::selectable()` instead"]
pub struct SelectableLabel {}

impl SelectableLabel {
    #[deprecated = "Use `Button::selectable()` instead"]
    pub fn new(selected: bool, text: impl Into<WidgetText>) -> super::Button<'static> {
        crate::Button::selectable(selected, text)
    }
}