Example #1
0
        private void SaveInfos()
        {
            // Commit changes to the keyframe
            // This must not be called at each info modification otherwise the update routine breaks...

            log.Debug("Saving comment and title");
            if (m_Keyframe != null)
            {
                m_Keyframe.CommentRtf = rtbComment.Rtf;

                if (m_Keyframe.Title != txtTitle.Text)
                {
                    m_Keyframe.Title = txtTitle.Text;
                    m_psui.OnKeyframesTitleChanged();
                }
            }
        }