Commit d74dd6b5 authored by Projects's avatar Projects

compass: Removed the status bar (the app is now fullscreen).

parent 5d5c7dfa
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
*/ */
#include "application.h" #include "application.h"
#include "widgets/status_bar.h"
#include <drivers/lsm303c.h> #include <drivers/lsm303c.h>
#include <gfx/ui.h>
#include <bitmaps.h> #include <bitmaps.h>
#include <sincos.h> #include <sincos.h>
...@@ -125,10 +125,6 @@ void compass_main(void *params) ...@@ -125,10 +125,6 @@ void compass_main(void *params)
ui_add_child(&compass_screen, &compass_widget); ui_add_child(&compass_screen, &compass_widget);
ui_add_widget(&compass_screen); ui_add_widget(&compass_screen);
/*TODO: comment this out ?*/
ui_init_widget(&status_bar);
ui_add_widget(&status_bar);
/*draw screen for the first time*/ /*draw screen for the first time*/
ui_update(NULL); ui_update(NULL);
...@@ -206,7 +202,6 @@ void compass_main(void *params) ...@@ -206,7 +202,6 @@ void compass_main(void *params)
} }
ui_update(&evt); ui_update(&evt);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment