0.3. login bg

This commit is contained in:
Monty Marz 2019-08-01 17:53:34 +00:00 committed by Dominik Broński
parent b1ca4fa13d
commit a5926eb40a
3 changed files with 5 additions and 5 deletions
assets/voxygen/background
server/src
voxygen/src/menu/main

BIN
assets/voxygen/background/bg_main.png (Stored with Git LFS)

Binary file not shown.

View File

@ -1048,7 +1048,7 @@ impl Server {
None => {
self.clients.notify(
entity,
ServerMsg::chat(format!(
ServerMsg::private(format!(
"Unrecognised command: '/{}'\ntype '/help' for a list of available commands",
kwd
)),

View File

@ -149,10 +149,10 @@ impl MainMenuUi {
.set(self.ids.bg, ui_widgets);
Image::new(self.imgs.v_logo)
.w_h(123.0 * 3.0, 35.0 * 3.0)
.top_left_with_margins(30.0, 30.0)
.top_right_with_margins(30.0, 30.0)
.set(self.ids.v_logo, ui_widgets);
Text::new(version)
.top_left_with_margins_on(ui_widgets.window, 5.0, 5.0)
.top_right_with_margins_on(ui_widgets.window, 5.0, 5.0)
.font_size(14)
.font_id(self.fonts.opensans)
.color(TEXT_COLOR)