@@ -155,26 +155,6 @@ class Navigator extends React.Component {
155
155
ipc . off ( messages . SHORTCUT_ACTIVE_FRAME_FORWARD , this . onForward )
156
156
}
157
157
158
- // BEM Level: navigator__menuBarAndNavigationBar__navigationBarWrapper
159
- get navigationBarWrapper ( ) {
160
- return < div className = { cx ( {
161
- navigationBarWrapper : true ,
162
- [ css ( styles . navigationBarWrapper ) ] : true
163
- } ) }
164
- onDoubleClick = { this . onDoubleClick }
165
- onDragOver = { this . onDragOver }
166
- onDrop = { this . onDrop }
167
- >
168
- { this . topLevelStartButtons }
169
- {
170
- this . props . showNavigationBar
171
- ? < NavigationBar />
172
- : null
173
- }
174
- { this . topLevelEndButtons }
175
- </ div >
176
- }
177
-
178
158
// BEM Level: navigator__menuBarAndNavigationBar__navigationBarWrapper__topLevelStartButtons
179
159
get topLevelStartButtons ( ) {
180
160
return < div className = { cx ( {
@@ -403,7 +383,22 @@ class Navigator extends React.Component {
403
383
</ div >
404
384
: null
405
385
}
406
- { this . navigationBarWrapper }
386
+ < div className = { cx ( {
387
+ navigationBarWrapper : true ,
388
+ [ css ( styles . navigator__menuBarAndNavigationBar__navigationBarWrapper ) ] : true
389
+ } ) }
390
+ onDoubleClick = { this . onDoubleClick }
391
+ onDragOver = { this . onDragOver }
392
+ onDrop = { this . onDrop }
393
+ >
394
+ { this . topLevelStartButtons }
395
+ {
396
+ this . props . showNavigationBar
397
+ ? < NavigationBar />
398
+ : null
399
+ }
400
+ { this . topLevelEndButtons }
401
+ </ div >
407
402
</ div >
408
403
{
409
404
this . props . isCaptionButton
@@ -425,7 +420,7 @@ const styles = StyleSheet.create({
425
420
whiteSpace : 'nowrap'
426
421
} ,
427
422
428
- navigationBarWrapper : {
423
+ navigator__menuBarAndNavigationBar__navigationBarWrapper : {
429
424
boxSizing : 'border-box' ,
430
425
display : 'flex' ,
431
426
justifyContent : 'space-between' ,
0 commit comments