mirror of
				https://github.com/gtalent/sc9k.git
				synced 2025-10-31 17:19:09 -05:00 
			
		
		
		
	Fix crash that happened after switching from an invalid to valid OpenLP host
This commit is contained in:
		| @@ -59,8 +59,11 @@ void SlideView::pollUpdate(QString const&songName, int slide) { | |||||||
| } | } | ||||||
|  |  | ||||||
| void SlideView::changeSong(int song) { | void SlideView::changeSong(int song) { | ||||||
| 	auto songItem = m_songSelector->item(song); | 	if (song < 0) { | ||||||
| 	if (songItem->text() != m_currentSong) { | 		return; | ||||||
|  | 	} | ||||||
|  | 	auto const songItem = m_songSelector->item(song); | ||||||
|  | 	if (songItem && songItem->text() != m_currentSong) { | ||||||
| 		emit songChanged(song); | 		emit songChanged(song); | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user