mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Form editor should trigger the save button properly now.
This commit is contained in:
parent
a0194f5d24
commit
baec2d1155
1 changed files with 4 additions and 2 deletions
|
@ -310,9 +310,9 @@ namespace GeorgesQt
|
||||||
|
|
||||||
void CGeorgesTreeViewDialog::modifiedFile( )
|
void CGeorgesTreeViewDialog::modifiedFile( )
|
||||||
{
|
{
|
||||||
if (!m_modified)
|
if (!isModified())
|
||||||
{
|
{
|
||||||
m_modified = true;
|
setModified( true );
|
||||||
setWindowTitle(windowTitle() + "*");
|
setWindowTitle(windowTitle() + "*");
|
||||||
}
|
}
|
||||||
Q_EMIT modified();
|
Q_EMIT modified();
|
||||||
|
@ -476,6 +476,8 @@ namespace GeorgesQt
|
||||||
m_ui.treeView->setCurrentIndex( idx );
|
m_ui.treeView->setCurrentIndex( idx );
|
||||||
|
|
||||||
log( name + " resized = " + QString::number( size ) );
|
log( name + " resized = " + QString::number( size ) );
|
||||||
|
|
||||||
|
modifiedFile();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CGeorgesTreeViewDialog::onAppendArray()
|
void CGeorgesTreeViewDialog::onAppendArray()
|
||||||
|
|
Loading…
Reference in a new issue