summaryrefslogtreecommitdiff
path: root/src/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/kernel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index 99a162b..b17baf4 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -215,7 +215,7 @@ static void handle_keyboard_event( keyboard_event_t *event, void *context )
}
*p = '\0';
text_widget_t widget3;
- text_widget_init( &widget3, (widget_t *)&desktop, 5, 5, vga->mode.x - 10 , 100, VGA_COLOR_RED, s );
+ text_widget_init( &widget3, (widget_t *)&desktop, 55, 5, vga->mode.x - 65 , 100, VGA_COLOR_RED, s );
((composite_widget_vtable_t *)desktop.vtable)->add_child( &desktop, (widget_t *)&widget3 );
// as vga_t is equals to the graphical context for now