Zooflow: fix small things

This commit is contained in:
Jonathan Jenne
2022-03-17 10:44:38 +01:00
parent da4573e18b
commit f8c186d915
3 changed files with 26 additions and 42 deletions

View File

@@ -1220,7 +1220,7 @@ Public Class frmFlowForm
End Try
End If
End Function
Private Async Function PictureEdit1_Click(sender As Object, e As EventArgs) As Task Handles PictureBoxSearch.Click
Private Async Function PictureEdit1_Click(sender As Object, e As EventArgs) As Task Handles SvgImageBox2.Click
If TextEdit1.Text = String.Empty Then
Open_FlowSearch()
Return
@@ -1293,8 +1293,8 @@ Public Class frmFlowForm
PictureBoxPM.SvgImage = My.Resources.FLOW_Sidebar_Task_inaktiv
End Sub
Private Sub TimerRefreshData_Tick_1(sender As Object, e As EventArgs) Handles TimerRefreshData.Tick
TaskBadge.Properties.Text = Date.Now.Millisecond.ToString.Last
Private Sub SvgImageBox2_Click(sender As Object, e As EventArgs) Handles SvgImageBox2.Click
Open_FlowSearch()
End Sub
End Class