EntryProvider: saveUserEntry: Only save key field if it's not empty
这个提交包含在:
父节点
adfb065358
当前提交
64d3223fb2
@ -309,7 +309,10 @@ void EntryProvider::saveUserEntry(const EntryConfig &config)
|
||||
outStream << "row" << " " << config.row << endl;
|
||||
outStream << "col" << " " << config.col << endl;
|
||||
outStream << "hidden" << " " << config.hidden << endl;
|
||||
outStream << "key" << " " << config.key << endl;
|
||||
if(!config.key.isEmpty())
|
||||
{
|
||||
outStream << "key" << " " << config.key << endl;
|
||||
}
|
||||
if(config.type == EntryType::USER)
|
||||
{
|
||||
if(!config.name.isEmpty())
|
||||
|
正在加载...
在新工单中引用
屏蔽一个用户