mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-07 02:32:32 +00:00
19 lines
247 B
C++
19 lines
247 B
C++
#include "config.h"
|
|
|
|
#include <torrent/exceptions.h>
|
|
|
|
#include "display/frame.h"
|
|
#include "display/window.h"
|
|
|
|
#include "element_base.h"
|
|
|
|
namespace ui {
|
|
|
|
void
|
|
ElementBase::mark_dirty() {
|
|
if (is_active())
|
|
m_frame->window()->mark_dirty();
|
|
}
|
|
|
|
}
|