update the widget after edits done from EventActivity

This commit is contained in:
tibbi 2016-09-19 23:09:00 +02:00
parent a8cffc36b1
commit 611b93aa12
1 changed files with 4 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import android.view.inputmethod.InputMethodManager
import android.widget.AdapterView
import android.widget.EditText
import com.simplemobiletools.calendar.*
import com.simplemobiletools.calendar.extensions.updateWidget
import com.simplemobiletools.calendar.fragments.DayFragment
import com.simplemobiletools.calendar.models.Event
import kotlinx.android.synthetic.main.activity_event.*
@ -317,17 +318,19 @@ class EventActivity : SimpleActivity(), DBHelper.DBOperationsListener {
Utils.showToast(applicationContext, R.string.event_added)
}
Utils.scheduleNotification(applicationContext, event)
updateWidget()
finish()
}
override fun eventUpdated(event: Event) {
Utils.scheduleNotification(applicationContext, event)
Utils.showToast(applicationContext, R.string.event_updated)
updateWidget()
finish()
}
override fun eventsDeleted(cnt: Int) {
updateWidget()
}
override fun gotEvents(events: MutableList<Event>) {