Fixed update of Session Source.

This commit is contained in:
brunoherbelin
2020-06-23 19:39:00 +02:00
parent 40037b3fa6
commit ee35e52b89
4 changed files with 13 additions and 8 deletions

View File

@@ -37,6 +37,7 @@ public:
// update mode (active or not)
void setActive (bool on);
inline bool active () { return active_; }
// return the last source which failed
Source *failedSource() { return failedSource_; }
@@ -60,6 +61,7 @@ protected:
SourceList sources_;
std::string filename_;
std::map<View::Mode, Group*> config_;
bool active_;
};
#endif // SESSION_H