Skip to content

Commit 8bc888e

Browse files
authored
Merge pull request #102 from zarkones/feature/ui-improvements
Visual Improvements To Automation Pipelines
2 parents 2649ff8 + f6aa79d commit 8bc888e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

ui/views/pipeline.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,6 @@ func pipeline(pipeline xenaC2.Pipeline, w *fyne.Window) fyne.CanvasObject {
459459
// Primary - center.
460460
container.NewHSplit(
461461
libraryTabs,
462-
463462
container.NewHSplit(
464463
diagramScroll,
465464
container.NewVBox(
@@ -471,6 +470,12 @@ func pipeline(pipeline xenaC2.Pipeline, w *fyne.Window) fyne.CanvasObject {
471470
),
472471
)
473472

473+
editorSplit := editorCont.Objects[0].(*container.Split)
474+
editorSplit.SetOffset(0.2)
475+
476+
diagramInspectorSplit := editorSplit.Trailing.(*container.Split)
477+
diagramInspectorSplit.SetOffset(0.75)
478+
474479
historyCont := pipelineRuns(pipeline.ID)
475480

476481
mainTabs := container.NewAppTabs(

ui/views/pipelines-table.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func PipelinesTable() fyne.CanvasObject {
4848
widget.NewButtonWithIcon("DELETE", theme.DeleteIcon(), func() {
4949
PipelineDeleteDialog(state.Pipelines[i], updatePipelines)
5050
}),
51-
widget.NewButtonWithIcon("EXPORT", theme.DeleteIcon(), func() {
51+
widget.NewButtonWithIcon("EXPORT", theme.DocumentSaveIcon(), func() {
5252
PipelineExportDialog(state.Pipelines[i], updatePipelines)
5353
}),
5454
widget.NewButtonWithIcon("EDIT", theme.DocumentCreateIcon(), func() {

0 commit comments

Comments
 (0)