From e37d59ad6d5ccd3911799f0f7da2de53596babb6 Mon Sep 17 00:00:00 2001 From: dabreegster Date: Tue, 26 Jan 2021 22:39:31 +0000 Subject: [PATCH] deploy: cbf07633275766b12c6f109312fe97ed64aa7c7f --- .../game/pregame/built_info/constant.BUILT_TIME_UTC.html | 2 +- .../debug/build/game-b5501e76eef510ad/out/built.rs.html | 2 +- rustdoc/src/widgetry/style/buttons.rs.html | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html index ae87ab466f..4a102fc525 100644 --- a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html +++ b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html @@ -1,5 +1,5 @@ game::pregame::built_info::BUILT_TIME_UTC - Rust

[][src]Constant game::pregame::built_info::BUILT_TIME_UTC

pub const BUILT_TIME_UTC: &str = "Tue, 26 Jan 2021 22:04:20 +0000";

The built-time in RFC2822, UTC

+ Change settings

[][src]Constant game::pregame::built_info::BUILT_TIME_UTC

pub const BUILT_TIME_UTC: &str = "Tue, 26 Jan 2021 22:37:01 +0000";

The built-time in RFC2822, UTC

\ No newline at end of file diff --git a/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-b5501e76eef510ad/out/built.rs.html b/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-b5501e76eef510ad/out/built.rs.html index 0519b223e5..b4b0d3e9a9 100644 --- a/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-b5501e76eef510ad/out/built.rs.html +++ b/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-b5501e76eef510ad/out/built.rs.html @@ -122,7 +122,7 @@ /// The output of `rustdoc -V` pub const RUSTDOC_VERSION: &str = "rustdoc 1.49.0 (e1884a8e3 2020-12-29)"; /// The built-time in RFC2822, UTC -pub const BUILT_TIME_UTC: &str = "Tue, 26 Jan 2021 22:04:20 +0000"; +pub const BUILT_TIME_UTC: &str = "Tue, 26 Jan 2021 22:37:01 +0000"; /// The target architecture, given by `cfg!(target_arch)`. pub const CFG_TARGET_ARCH: &str = "x86_64"; /// The endianness, given by `cfg!(target_endian)`. diff --git a/rustdoc/src/widgetry/style/buttons.rs.html b/rustdoc/src/widgetry/style/buttons.rs.html index 9c8fd62aa1..3cb13b5658 100644 --- a/rustdoc/src/widgetry/style/buttons.rs.html +++ b/rustdoc/src/widgetry/style/buttons.rs.html @@ -555,17 +555,17 @@ /// A right facing caret, like ">", suitable for paging to the "next" set of results fn btn_next(&self) -> ButtonBuilder<'a> { - self.btn_plain_light_icon("system/assets/tools/next.svg") + self.btn_plain_light_icon_bytes(include_labeled_bytes!("../../icons/next.svg")) } /// A left facing caret, like "<", suitable for paging to the "next" set of results fn btn_prev(&self) -> ButtonBuilder<'a> { - self.btn_plain_light_icon("system/assets/tools/prev.svg") + self.btn_plain_light_icon_bytes(include_labeled_bytes!("../../icons/prev.svg")) } /// An "X" button to close the current state. Bound to the escape key. fn btn_close(&self) -> ButtonBuilder<'a> { - self.btn_plain_light_icon("system/assets/tools/close.svg") + self.btn_plain_light_icon_bytes(include_labeled_bytes!("../../icons/close.svg")) .hotkey(Key::Escape) }