diff options
-rw-r--r-- | images/4chan_logo.png | bin | 7852 -> 8301 bytes | |||
-rw-r--r-- | src/Body.cpp | 3 | ||||
-rw-r--r-- | src/QuickMedia.cpp | 4 |
3 files changed, 3 insertions, 4 deletions
diff --git a/images/4chan_logo.png b/images/4chan_logo.png Binary files differindex 2baed50..6ba927a 100644 --- a/images/4chan_logo.png +++ b/images/4chan_logo.png diff --git a/src/Body.cpp b/src/Body.cpp index a426afe..5ac8466 100644 --- a/src/Body.cpp +++ b/src/Body.cpp @@ -127,8 +127,7 @@ namespace QuickMedia { // TODO: Use a render target for the whole body so all images can be put into one. // TODO: Unload thumbnails once they are no longer visible on the screen. // TODO: Load thumbnails with more than one thread. - // TODO: Show chapters (rows) that have been read differently to make it easier to see what - // hasn't been read yet. + // TODO: Show chapters (rows) that have been read differently to make it easier to see what hasn't been read yet. void Body::draw(sf::RenderWindow &window, sf::Vector2f pos, sf::Vector2f size, const Json::Value &content_progress) { const float font_height = title_text.getCharacterSize() + 4.0f; const float image_max_height = 100.0f; diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp index 01f4529..ea3524c 100644 --- a/src/QuickMedia.cpp +++ b/src/QuickMedia.cpp @@ -164,7 +164,7 @@ namespace QuickMedia { fprintf(stderr, "Failed to load plugin logo, path: %s\n", plugin_logo_path.c_str()); return -2; } - //plugin_logo.generateMipmap(); + plugin_logo.generateMipmap(); plugin_logo.setSmooth(true); } @@ -1528,7 +1528,7 @@ namespace QuickMedia { window.clear(back_color); body->draw(window, body_pos, body_size); - //search_bar->draw(window); + search_bar->draw(window); window.display(); } } |