summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/program.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/program.rs b/src/program.rs
index 68efab88..94cb9a7d 100644
--- a/src/program.rs
+++ b/src/program.rs
@@ -570,14 +570,6 @@ pub fn with_executor<P: Program, E: Executor>(
type Renderer = P::Renderer;
type Executor = E;
- fn theme(
- &self,
- state: &Self::State,
- window: window::Id,
- ) -> Self::Theme {
- self.program.theme(state, window)
- }
-
fn title(&self, state: &Self::State, window: window::Id) -> String {
self.program.title(state, window)
}
@@ -605,6 +597,14 @@ pub fn with_executor<P: Program, E: Executor>(
self.program.subscription(state)
}
+ fn theme(
+ &self,
+ state: &Self::State,
+ window: window::Id,
+ ) -> Self::Theme {
+ self.program.theme(state, window)
+ }
+
fn style(
&self,
state: &Self::State,