Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
965029a8
Commit
965029a8
authored
3 years ago
by
Maxime Jacquemin
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] Minor details
Changing displayed texts where all functions are filtered.
parent
407564ad
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ivette/src/dome/renderer/frame/sidebars.tsx
+3
-1
3 additions, 1 deletion
ivette/src/dome/renderer/frame/sidebars.tsx
ivette/src/frama-c/kernel/Globals.tsx
+2
-8
2 additions, 8 deletions
ivette/src/frama-c/kernel/Globals.tsx
with
5 additions
and
9 deletions
ivette/src/dome/renderer/frame/sidebars.tsx
+
3
−
1
View file @
965029a8
...
@@ -139,7 +139,9 @@ export function Section(props: SectionProps): JSX.Element | null {
...
@@ -139,7 +139,9 @@ export function Section(props: SectionProps): JSX.Element | null {
const
visible
=
unfold
??
state
;
const
visible
=
unfold
??
state
;
const
maxHeight
=
visible
?
'
max-content
'
:
0
;
const
maxHeight
=
visible
?
'
max-content
'
:
0
;
const
{
rightButtonProps
:
iconProps
}
=
props
;
const
{
rightButtonProps
:
iconProps
}
=
props
;
const
rightButton
=
iconProps
?
<
IconButton
{
...
iconProps
}
/>
:
undefined
;
const
className
=
'
dome-xSideBarSection-filterButton
'
+
iconProps
?.
className
;
const
rightButton
=
iconProps
?
<
IconButton
{
...
iconProps
}
className
=
{
className
}
/>
:
undefined
;
return
(
return
(
<
div
className
=
{
'
dome-xSideBarSection
'
+
props
.
className
}
>
<
div
className
=
{
'
dome-xSideBarSection
'
+
props
.
className
}
>
...
...
This diff is collapsed.
Click to expand it.
ivette/src/frama-c/kernel/Globals.tsx
+
2
−
8
View file @
965029a8
...
@@ -186,7 +186,6 @@ export default function Globals(): JSX.Element {
...
@@ -186,7 +186,6 @@ export default function Globals(): JSX.Element {
icon
:
'
TUNINGS
'
,
icon
:
'
TUNINGS
'
,
title
:
`Functions filtering options (
${
nFilter
}
/
${
nTotal
}
)`
,
title
:
`Functions filtering options (
${
nFilter
}
/
${
nTotal
}
)`
,
onClick
:
onContextMenu
,
onClick
:
onContextMenu
,
className
:
'
dome-xSideBarSection-filterButton
'
};
};
const
filteredFunctions
=
const
filteredFunctions
=
...
@@ -209,14 +208,9 @@ export default function Globals(): JSX.Element {
...
@@ -209,14 +208,9 @@ export default function Globals(): JSX.Element {
const
allFiltered
=
const
allFiltered
=
<
div
className
=
'dome-xSideBarSection-content'
>
<
div
className
=
'dome-xSideBarSection-content'
>
<
label
className
=
'dome-xSideBarSection-info'
>
<
label
className
=
'dome-xSideBarSection-info'
>
{
'
All functions are filtered. Maybe you can change
'
+
{
'
All functions are filtered. Try adjusting function filters.
'
}
'
the filtering options.
'
}
</
label
>
</
label
>
<
Button
<
Button
{
...
filterButtonProps
}
label
=
'Functions filters'
/>
{
...
filterButtonProps
}
className
=
''
label
=
'Functions filtering options'
/>
</
div
>;
</
div
>;
return
(
return
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment