mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 05:48:40 +00:00
fix expression editability condition in watch tables; notes
This commit is contained in:
@@ -213,7 +213,6 @@
|
|||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: 0.9.16 TODO notes
|
//~ rjf: 0.9.16 TODO notes
|
||||||
//
|
//
|
||||||
// [ ] fix operator precedence in (u64)&foo - merge prefix-unary parsing with atom parsing loop
|
|
||||||
// [ ] autocompletion lister
|
// [ ] autocompletion lister
|
||||||
// [ ] we probably want to disable pop/pull out for transient things, e.g. theme color cfgs
|
// [ ] we probably want to disable pop/pull out for transient things, e.g. theme color cfgs
|
||||||
// (actually, just kill the tabs on load if they refer to transient things)
|
// (actually, just kill the tabs on load if they refer to transient things)
|
||||||
@@ -530,6 +529,7 @@
|
|||||||
// [x] do not apply filters past one block layer
|
// [x] do not apply filters past one block layer
|
||||||
// [x] "pop out" (hitting enter on visualizers should open them as tabs)
|
// [x] "pop out" (hitting enter on visualizers should open them as tabs)
|
||||||
// [x] crash bug, release mode - filter globals view (try with debugging raddbg, typing `dev` in globals view)
|
// [x] crash bug, release mode - filter globals view (try with debugging raddbg, typing `dev` in globals view)
|
||||||
|
// [x] fix operator precedence in (u64)&foo - merge prefix-unary parsing with atom parsing loop
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: Build Options
|
//~ rjf: Build Options
|
||||||
|
|||||||
@@ -971,7 +971,7 @@ rd_watch_row_info_from_row(Arena *arena, EV_Row *row)
|
|||||||
////////////////////////////
|
////////////////////////////
|
||||||
//- rjf: fill if row's expression is editable
|
//- rjf: fill if row's expression is editable
|
||||||
//
|
//
|
||||||
if(block_type->flags & E_TypeFlag_EditableChildren || row->eval.expr == &e_expr_nil)
|
if(block_type->flags & E_TypeFlag_EditableChildren || (e_key_match(row->eval.key, e_key_zero()) && row->eval.expr == &e_expr_nil))
|
||||||
{
|
{
|
||||||
info.expr_is_editable = 1;
|
info.expr_is_editable = 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user