Skip to content
Snippets Groups Projects
Commit 41be063b authored by chris's avatar chris
Browse files

remove find and replace from tracking toolgroup

parent 2cbbc981
No related branches found
No related tags found
1 merge request!634Publish@0.9.67
...@@ -121,6 +121,7 @@ export default { ...@@ -121,6 +121,7 @@ export default {
'ToggleAi', 'ToggleAi',
'Tables', 'Tables',
'TrackingAndEditing', 'TrackingAndEditing',
'FindAndReplaceTool',
'FullScreen', 'FullScreen',
], ],
}, },
......
...@@ -76,15 +76,15 @@ const TopMenu = styled.div` ...@@ -76,15 +76,15 @@ const TopMenu = styled.div`
border-right-width: ${th('borderWidth')}; border-right-width: ${th('borderWidth')};
} }
> div:nth-last-of-type(-n + 2) { // > div:nth-last-of-type(-n + 2) {
margin-left: auto; // margin-left: auto;
} // }
> div[data-name='FullScreen'] { > div[data-name='FullScreen'] {
margin: 0; margin-left: auto;
} }
> div[data-name='Tables'] { > div[data-name='FindAndReplaceTool'] {
border-right: none; border-right: none;
} }
`; `;
......
...@@ -6,10 +6,10 @@ class TrackingAndEditing extends ToolGroup { ...@@ -6,10 +6,10 @@ class TrackingAndEditing extends ToolGroup {
tools = []; tools = [];
constructor( constructor(
@inject('EditingSuggesting') editingSuggesting, @inject('EditingSuggesting') editingSuggesting,
@inject('FindAndReplace') findAndReplace, // @inject('FindAndReplace') findAndReplace,
) { ) {
super(); super();
this.tools = [findAndReplace, editingSuggesting]; this.tools = [editingSuggesting];
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment