Remove bullets from About SpacemanDMM menu

This commit is contained in:
Tad Hardesty 2019-11-15 23:02:49 -08:00
parent f9cb681c14
commit b68d84bee7

View file

@ -574,13 +574,13 @@ impl EditorScene {
}
ui.menu(im_str!("Help"), true, || {
ui.menu(im_str!("About SpacemanDMM"), true, || {
ui.bullet_text(&im_str!(
ui.text(&im_str!(
"{} {} Copyright (C) 2017-2019 Tad Hardesty",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_VERSION"),
));
ui.bullet_text(&im_str!("{}", include_str!(concat!(env!("OUT_DIR"), "/build-info.txt"))));
ui.bullet_text(im_str!("This program comes with ABSOLUTELY NO WARRANTY. This is free software,\n\
ui.text(&im_str!("{}", include_str!(concat!(env!("OUT_DIR"), "/build-info.txt"))));
ui.text(im_str!("This program comes with ABSOLUTELY NO WARRANTY. This is free software,\n\
and you are welcome to redistribute it under the conditions of the GNU\n\
General Public License version 3."));
});