We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0053864 commit 2eddf12Copy full SHA for 2eddf12
src/wayland/shell/xdg/mod.rs
@@ -285,6 +285,14 @@ macro_rules! xdg_role {
285
pub fn has_pending_changes(&self) -> bool {
286
self.server_pending.as_ref().map(|s| s != self.current_server_state()).unwrap_or(false)
287
}
288
+
289
+ /// Returns a list of configures sent to, but not yet acknowledged by the client.
290
+ ///
291
+ /// The list is ordered by age, so the last configure in the list is the last one sent
292
+ /// to the client.
293
+ pub fn pending_configures(&self) -> &[$configure_name] {
294
+ &self.pending_configures
295
+ }
296
297
298
impl Default for $attributes_name {
0 commit comments