mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 08:48:40 +02:00
[ui] CRF display: avoid binding error when closing the application
Co-authored-by: Julien Haudegond <44610840+Julien-Haudegond@users.noreply.github.com>
This commit is contained in:
parent
b295242576
commit
2a564a8336
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ FloatingPane {
|
|||
}
|
||||
|
||||
// note: We need to use csvData.getNbColumns() slot instead of the csvData.nbColumns property to avoid a crash on linux.
|
||||
property bool crfReady: csvData.ready && (csvData.getNbColumns() >= 4)
|
||||
property bool crfReady: csvData && csvData.ready && (csvData.getNbColumns() >= 4)
|
||||
onCrfReadyChanged: {
|
||||
if(crfReady)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue