diff options
| author | bob <bcz@cs.brown.edu> | 2019-05-06 15:39:14 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-05-06 15:39:14 -0400 |
| commit | 8ed190ae29f90442c3589ee692578150b8ad8667 (patch) | |
| tree | 404fb08eee37cc7c8d625517e60fb9ab64e65f80 /src/client/views/collections/CollectionDockingView.tsx | |
| parent | d9f06ce89e3114578c3e1b3fb8cb086afebdd73c (diff) | |
switched to alt key for toggling how minimized views appear
Diffstat (limited to 'src/client/views/collections/CollectionDockingView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionDockingView.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx index 05c467763..d894909d0 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -134,8 +134,9 @@ export class CollectionDockingView extends React.Component<SubCollectionViewProp newContentItem.config.width = 50; } if (minimize) { - newContentItem.config.width = 10; - newContentItem.config.height = 10; + // bcz: this makes the drag image show up better, but it also messes with fixed layout sizes + // newContentItem.config.width = 10; + // newContentItem.config.height = 10; } newContentItem.callDownwards('_$init'); this.layoutChanged(); |
