diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-08-27 18:21:17 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-08-27 18:21:17 (GMT) |
commit | 5792b6c860810915d62365125cafc6bff096e405 (patch) | |
tree | 066866c023a3fb9e6d0e2cb36a295e9b8f727669 /src/gui/panels | |
parent | 562a56f01cfb81ff7538418dd183aaa53e90b17c (diff) |
Handled Dalvik code definition loading with more care.
Diffstat (limited to 'src/gui/panels')
-rw-r--r-- | src/gui/panels/errors.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/gui/panels/errors.c b/src/gui/panels/errors.c index 9f5cef4..1c2c54f 100644 --- a/src/gui/panels/errors.c +++ b/src/gui/panels/errors.c @@ -597,7 +597,10 @@ static void update_error_panel(GErrorPanel *panel, GtkStatusStack *status, activ if (fmt) { - if (show_format && e->ftype == BFE_STRUCTURE) + if (show_format && e->ftype == BFE_SPECIFICATION) + visible = TRUE; + + else if (show_format && e->ftype == BFE_STRUCTURE) visible = TRUE; } @@ -624,7 +627,10 @@ static void update_error_panel(GErrorPanel *panel, GtkStatusStack *status, activ if (fmt) { - if (show_format && e->ftype == BFE_STRUCTURE) + if (show_format && e->ftype == BFE_SPECIFICATION) + icon = G_ERROR_PANEL_GET_CLASS(panel)->format_img; + + else if (show_format && e->ftype == BFE_STRUCTURE) icon = G_ERROR_PANEL_GET_CLASS(panel)->format_img; } @@ -834,7 +840,10 @@ static void filter_error_panel(GErrorPanel *panel, GtkStatusStack *status, activ if (fmt) { - if (show_format && type == BFE_STRUCTURE) + if (show_format && type == BFE_SPECIFICATION) + visible = TRUE; + + else if (show_format && type == BFE_STRUCTURE) visible = TRUE; } |