Skip to content

Commit

Permalink
UIパネルのタイトルバーダブルクリック動作。
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanasu committed Feb 21, 2024
1 parent caa1263 commit f6e1cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/component/ui-panel/ui-panel.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div [@flyInOut]="'in'" [ngClass]="{'pointer-events-none': isPointerDragging, 'is-full-screen': isFullScreen, 'is-minimized': isMinimized && !isFullScreen, 'i-am-gm': isGMMode}" class="draggable-panel"
[style.left.px]="left" [style.top.px]="top" [style.width.px]="width" [style.height.px]="height"
[resizable.disable]="isMinimized || isFullScreen" [resizable.align]="!isAbleRotateButton ? 'normal' : isHorizontal ? 'horizontal' : 'vertical'" [draggable.disable]="isFullScreen" [draggable.stack]="'.draggable-panel'" [resizable.stack]="'.draggable-panel'" appDraggable appResizable #draggablePanel>
<div class="title" #titleBar>
<div class="title" #titleBar (dblclick)="isFullScreen ? toggleFullScreen() : toggleMinimize()">
<button *ngIf="isAbleRotateButton" style="padding: 0px; height: 14px; margin-top: 3px; margin-left: 1px" (click)="toggleRotate()"><i class="material-icons" style="font-size: 14px;">pivot_table_chart</i></button>
<div [ngClass]="{'rotateble': isAbleRotateButton}">{{panelService.title}}</div>
<div class="title-button">
Expand Down

0 comments on commit f6e1cdf

Please sign in to comment.