Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'applications/gui/modules/widget.c')
-rwxr-xr-xapplications/gui/modules/widget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/gui/modules/widget.c b/applications/gui/modules/widget.c
index d6c50aaa..09729ee6 100755
--- a/applications/gui/modules/widget.c
+++ b/applications/gui/modules/widget.c
@@ -52,7 +52,7 @@ static bool gui_widget_view_input_callback(InputEvent* event, void* context) {
}
Widget* widget_alloc() {
- Widget* widget = furi_alloc(sizeof(Widget));
+ Widget* widget = malloc(sizeof(Widget));
widget->view = view_alloc();
view_set_context(widget->view, widget);
view_allocate_model(widget->view, ViewModelTypeLocking, sizeof(GuiWidgetModel));