Skip to content
Snippets Groups Projects
Commit c9eae381 authored by Boroondas Gupte's avatar Boroondas Gupte
Browse files

VWR-26066: FIXED request LLFloaterWorldMap child "zoom slider" with correct type

LLSliderCtrl instead of LLSlider to get rid of warning when opening map flaoter
parent 0274c1f2
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,7 @@ blino Nakamura
VWR-17
Boroondas Gupte
VWR-233
VWR-26066
WEB-262
Bulli Schumann
CT-218
......
......@@ -67,7 +67,7 @@
#include "llappviewer.h"
#include "llmapimagetype.h"
#include "llweb.h"
#include "llslider.h"
#include "llsliderctrl.h"
#include "llglheaders.h"
#include "llwindow.h" // copyTextToClipboard()
......@@ -974,7 +974,7 @@ void LLFloaterWorldMap::adjustZoomSliderBounds()
F32 min_power = log(pixels_per_region/256.f)/log(2.f);
getChild<LLSlider>("zoom slider")->setMinValue(min_power);
getChild<LLSliderCtrl>("zoom slider")->setMinValue(min_power);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment