mirror of
https://github.com/fltk/fltk.git
synced 2026-05-31 05:35:29 +08:00
Fix dependencies and whitespace issues
This commit is contained in:
@@ -32,7 +32,7 @@ extern void reveal_in_browser(Fl_Type *t);
|
||||
/**
|
||||
Update the header and source code highlighting depending on the
|
||||
currently selected object
|
||||
|
||||
|
||||
The Source View system offers an immediate preview of the code
|
||||
files that will be generated by FLUID. It also marks the code
|
||||
generated for the last selected item in the header and the source
|
||||
@@ -343,11 +343,11 @@ static void cb_1(Fl_Button*, void*) {
|
||||
static void cb_Reveal(Fl_Button*, void*) {
|
||||
if (sourceview_panel && sourceview_panel->visible()) {
|
||||
Fl_Type *node = NULL;
|
||||
if (sv_source->visible_r())
|
||||
if (sv_source->visible_r())
|
||||
node = Fl_Type::find_in_text(0, sv_source->insert_position());
|
||||
else if (sv_header->visible_r())
|
||||
else if (sv_header->visible_r())
|
||||
node = Fl_Type::find_in_text(1, sv_header->insert_position());
|
||||
else if (sv_project->visible_r())
|
||||
else if (sv_project->visible_r())
|
||||
node = Fl_Type::find_in_text(2, sv_project->insert_position());
|
||||
if (node) {
|
||||
select_only(node);
|
||||
|
||||
Reference in New Issue
Block a user